[llvm-commits] [llvm] r49972 - /llvm/trunk/docs/LangRef.html
Chris Lattner
sabre at nondot.org
Sat Apr 19 15:41:32 PDT 2008
Author: lattner
Date: Sat Apr 19 17:41:32 2008
New Revision: 49972
URL: http://llvm.org/viewvc/llvm-project?rev=49972&view=rev
Log:
free(null) -> noop
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=49972&r1=49971&r2=49972&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sat Apr 19 17:41:32 2008
@@ -2842,8 +2842,8 @@
<h5>Semantics:</h5>
<p>Access to the memory pointed to by the pointer is no longer defined
-after this instruction executes. If the pointer is null, the behavior is
-undefined.</p>
+after this instruction executes. If the pointer is null, the operation
+is a noop.</p>
<h5>Example:</h5>
More information about the llvm-commits
mailing list