From: Nick Lewycky
Date: Tue, 27 Oct 2009 16:56:58 +0000 (+0000)
Subject: Fix reversed logic spotted by Owen Anderson.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8d33659b93f8136505b89a34dcbc350c1ac4654d;p=oota-llvm.git
Fix reversed logic spotted by Owen Anderson.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85251 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 414b452f622..73ee31b3245 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -6966,8 +6966,8 @@ LLVM.
Semantics:
This intrinsic indicates that before this point in the code, the value of the
memory pointed to by ptr is dead. This means that it is known to
- never be used and has an undefined value. A load from the pointer that is
- preceded by this intrinsic can be replaced with
+ never be used and has an undefined value. A load from the pointer that
+ precedes this intrinsic can be replaced with
'undef'.