diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-10-27 16:56:58 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-10-27 16:56:58 +0000 |
commit | d20fd59e2954b3cdac95ba624bd42ae86e543c5c (patch) | |
tree | 0f3553649670dde7ad37e3b9e258522f5b7a312e /llvm | |
parent | 4cc68c29e60e0e0c85ec2b88e4f3535e0ef31c31 (diff) | |
download | bcm5719-llvm-d20fd59e2954b3cdac95ba624bd42ae86e543c5c.tar.gz bcm5719-llvm-d20fd59e2954b3cdac95ba624bd42ae86e543c5c.zip |
Fix reversed logic spotted by Owen Anderson.
llvm-svn: 85251
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/LangRef.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 414b452f622..73ee31b3245 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -6966,8 +6966,8 @@ LLVM</a>.</p> <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> |