[llvm] 25e96df - [LangRef] fix unexepcted unindent errror

Juneyoung Lee via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 15 17:59:08 PDT 2021


Author: Juneyoung Lee
Date: 2021-04-16T09:58:55+09:00
New Revision: 25e96dffac8473e3249c6f95f5b9f9361b2a5a53

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

LOG: [LangRef] fix unexepcted unindent errror

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index ed2f5db5254c..3d483d067acc 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -2717,8 +2717,7 @@ synchronization.
 
     define void @f(i8* %a) {
       store i8* %a, i8** @glb
-      store atomic i1 false, i1* @lock release ; %a is captured because another
-thread can safely read @glb
+      store atomic i1 false, i1* @lock release ; %a is captured because another thread can safely read @glb
       store i8* null, i8** @glb
       ret void
     }


        


More information about the llvm-commits mailing list