From 5b6f941e70eb386526d36c639a1a7b919e1a8736 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Sat, 19 Apr 2008 22:41:32 +0000
Subject: [PATCH] free(null) -> noop
llvm-svn: 49972
---
docs/LangRef.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 09e557f2159..a638e508805 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2842,8 +2842,8 @@ instruction.
Semantics:
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.
+after this instruction executes. If the pointer is null, the operation
+is a noop.
Example: