[llvm] 2079ea9 - [LangRef] fix more undefined label errors

Juneyoung Lee via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 4 00:09:13 PST 2021


Author: Juneyoung Lee
Date: 2021-03-04T17:09:03+09:00
New Revision: 2079ea94debb9d1fcd6b8fd7f899f56b6b4b31b9

URL: https://github.com/llvm/llvm-project/commit/2079ea94debb9d1fcd6b8fd7f899f56b6b4b31b9
DIFF: https://github.com/llvm/llvm-project/commit/2079ea94debb9d1fcd6b8fd7f899f56b6b4b31b9.diff

LOG: [LangRef] fix more undefined label errors

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 590a2ab53a33..35f64bdb3039 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -2568,8 +2568,8 @@ operations that don't dereference it such as
 This explains code motion of these instructions across operations that
 impact the object's lifetime.
 A stack object's lifetime can be explicitly specified using
-:ref:`llvm.lifetime.start <_int_lifestart>` and
-:ref:`llvm.lifetime.end <_int_lifeend>` intrinsic function calls.
+:ref:`llvm.lifetime.start <int_lifestart>` and
+:ref:`llvm.lifetime.end <int_lifeend>` intrinsic function calls.
 
 .. _pointeraliasing:
 
@@ -17836,7 +17836,7 @@ Memory Use Markers
 ------------------
 
 This class of intrinsics provides information about the
-:ref:`lifetime of memory objects <_objectlifetime>` and ranges where variables
+:ref:`lifetime of memory objects <objectlifetime>` and ranges where variables
 are immutable.
 
 .. _int_lifestart:
@@ -17855,7 +17855,7 @@ Overview:
 """""""""
 
 The '``llvm.lifetime.start``' intrinsic specifies the start of
-:ref:`a memory object's lifetime <_objectlifetime>`.
+:ref:`a memory object's lifetime <objectlifetime>`.
 
 Arguments:
 """"""""""
@@ -17901,7 +17901,7 @@ Overview:
 """""""""
 
 The '``llvm.lifetime.end``' intrinsic specifies the end of
-:ref:`a memory object's lifetime <_objectlifetime>`.
+:ref:`a memory object's lifetime <objectlifetime>`.
 
 Arguments:
 """"""""""


        


More information about the llvm-commits mailing list