[llvm] dbf41dd - [LangRef] fix undefined label

Juneyoung Lee via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 3 17:13:13 PST 2021


Author: Juneyoung Lee
Date: 2021-03-04T10:12:57+09:00
New Revision: dbf41ddaa3200fc5b66a5694d84b322a26b13a5a

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

LOG: [LangRef] fix undefined label

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 6866cc362f57..590a2ab53a33 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -2553,7 +2553,7 @@ A memory object, or simply object, is a region of a memory space that is
 reserved by a memory allocation such as :ref:`alloca <i_alloca>`, heap
 allocation calls, and global variable definitions.
 Once it is allocated, the bytes stored in the region can only be read or written
-through a pointer that is :ref:`based on <_pointeraliasing>` the allocation
+through a pointer that is :ref:`based on <pointeraliasing>` the allocation
 value.
 If a pointer that is not based on the object tries to read or write to the
 object, it is undefined behavior.


        


More information about the llvm-commits mailing list