From 0b0669a0568331122e545c93c6580786cf0cafdd Mon Sep 17 00:00:00 2001
From: Evan Cheng
Date: Wed, 29 Jun 2011 17:14:00 +0000
Subject: [PATCH] Add missing operand. rdar://9694169
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134078 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LangRef.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 7823f12ffff..74b2391e294 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -7309,7 +7309,7 @@ LLVM.
store i32 4, %ptr
%result1 = load i32* %ptr ; yields {i32}:result1 = 4
- 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)
; guarantee the above finishes
store i32 8, %ptr ; before this begins