[llvm] 62bd7da - [LangRef] Add link to opaque pointers

via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 9 11:41:17 PDT 2021


Author: madhur13490
Date: 2021-06-10T00:11:02+05:30
New Revision: 62bd7da889c1e9604b2b0c8d8c7683b30c8b8ff0

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

LOG: [LangRef] Add link to opaque pointers

Reviewed By: aeubanks

Differential Revision: https://reviews.llvm.org/D103981

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 0dc0b53925d8..925382539c40 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -3320,10 +3320,12 @@ are target-specific.
 Note that LLVM does not permit pointers to void (``void*``) nor does it
 permit pointers to labels (``label*``). Use ``i8*`` instead.
 
-LLVM is in the process of transitioning to opaque pointers. Opaque pointers do
-not have a pointee type. Rather, instructions interacting through pointers
-specify the type of the underlying memory they are interacting with. Opaque
-pointers are still in the process of being worked on and are not complete.
+LLVM is in the process of transitioning to
+`opaque pointers <OpaquePointers.html#opaque-pointers>`_.
+Opaque pointers do not have a pointee type. Rather, instructions
+interacting through pointers specify the type of the underlying memory
+they are interacting with. Opaque pointers are still in the process of
+being worked on and are not complete.
 
 :Syntax:
 


        


More information about the llvm-commits mailing list