[llvm] bb72adc - [NFC] Use correct ssa.copy spelling when referring to the intrinsic
Jeroen Dobbelaere via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 13 11:47:51 PST 2021
Author: Jeroen Dobbelaere
Date: 2021-01-13T20:43:14+01:00
New Revision: bb72adcaee7db0877e1cecb29d414003bf19ce02
URL: https://github.com/llvm/llvm-project/commit/bb72adcaee7db0877e1cecb29d414003bf19ce02
DIFF: https://github.com/llvm/llvm-project/commit/bb72adcaee7db0877e1cecb29d414003bf19ce02.diff
LOG: [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
Added:
Modified:
llvm/docs/LangRef.rst
Removed:
################################################################################
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 854c72191da2..5a4c652c3603 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -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
More information about the llvm-commits
mailing list