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 | 8d33659b93f8136505b89a34dcbc350c1ac4654d (patch) | |
tree | 48280bc9b25ef1b81ab1b46d5e5170cfec3d8646 /docs | |
parent | 37459e508b6d0ca342923ca84d0cfba410094fb3 (diff) | |
download | external_llvm-8d33659b93f8136505b89a34dcbc350c1ac4654d.zip external_llvm-8d33659b93f8136505b89a34dcbc350c1ac4654d.tar.gz external_llvm-8d33659b93f8136505b89a34dcbc350c1ac4654d.tar.bz2 |
Fix reversed logic spotted by Owen Anderson.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 414b452..73ee31b 100644 --- a/docs/LangRef.html +++ b/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> |