[llvm-commits] [llvm] r134078 - /llvm/trunk/docs/LangRef.html
Evan Cheng
evan.cheng at apple.com
Wed Jun 29 10:14:00 PDT 2011
Author: evancheng
Date: Wed Jun 29 12:14:00 2011
New Revision: 134078
URL: http://llvm.org/viewvc/llvm-project?rev=134078&view=rev
Log:
Add missing operand. rdar://9694169
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=134078&r1=134077&r2=134078&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Wed Jun 29 12:14:00 2011
@@ -7309,7 +7309,7 @@
store i32 4, %ptr
%result1 = load i32* %ptr <i>; yields {i32}:result1 = 4</i>
- call void @llvm.memory.barrier(i1 false, i1 true, i1 false, i1 false)
+ call void @llvm.memory.barrier(i1 false, i1 true, i1 false, i1 false, i1 true)
<i>; guarantee the above finishes</i>
store i32 8, %ptr <i>; before this begins</i>
</pre>
More information about the llvm-commits
mailing list