forked from OSchip/llvm-project
[NFC] Use correct ssa.copy spelling when referring to the intrinsic
Split out from D91250. Fixes wrong ssa_copy naming. Reviewed By: fhahn Differential Revision: https://reviews.llvm.org/D94310
This commit is contained in:
parent
e7a371f9fd
commit
bb72adcaee
|
@ -20063,7 +20063,7 @@ optimizer.
|
|||
|
||||
.. _int_ssa_copy:
|
||||
|
||||
'``llvm.ssa_copy``' Intrinsic
|
||||
'``llvm.ssa.copy``' Intrinsic
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Syntax:
|
||||
|
@ -20071,7 +20071,7 @@ Syntax:
|
|||
|
||||
::
|
||||
|
||||
declare type @llvm.ssa_copy(type %operand) returned(1) readnone
|
||||
declare type @llvm.ssa.copy(type %operand) returned(1) readnone
|
||||
|
||||
Arguments:
|
||||
""""""""""
|
||||
|
@ -20081,7 +20081,7 @@ The first argument is an operand which is used as the returned value.
|
|||
Overview:
|
||||
""""""""""
|
||||
|
||||
The ``llvm.ssa_copy`` intrinsic can be used to attach information to
|
||||
The ``llvm.ssa.copy`` intrinsic can be used to attach information to
|
||||
operations by copying them and giving them new names. For example,
|
||||
the PredicateInfo utility uses it to build Extended SSA form, and
|
||||
attach various forms of information to operands that dominate specific
|
||||
|
|
Loading…
Reference in New Issue