[llvm-commits] [llvm] r85251 - /llvm/trunk/docs/LangRef.html

Nick Lewycky nicholas at mxc.ca
Tue Oct 27 09:56:58 PDT 2009


Author: nicholas
Date: Tue Oct 27 11:56:58 2009
New Revision: 85251

URL: http://llvm.org/viewvc/llvm-project?rev=85251&view=rev
Log:
Fix reversed logic spotted by Owen Anderson.

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=85251&r1=85250&r2=85251&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Tue Oct 27 11:56:58 2009
@@ -6966,8 +6966,8 @@
 <h5>Semantics:</h5>
 <p>This intrinsic indicates that before this point in the code, the value of the
    memory pointed to by <tt>ptr</tt> 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
    <tt>'<a href="#undefvalues">undef</a>'</tt>.</p>
 
 </div>





More information about the llvm-commits mailing list