From e0db56db311069416159171b6c7a31587ac0af5c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 19 Apr 2008 22:41:32 +0000 Subject: [PATCH] free(null) -> noop git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49972 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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:
-- 2.34.1