Update comment for malloc being a library call now, rather than an instruction.
authorDan Gohman <dan433584@gmail.com>
Thu, 29 Nov 2012 21:58:47 +0000 (21:58 +0000)
committerDan Gohman <dan433584@gmail.com>
Thu, 29 Nov 2012 21:58:47 +0000 (21:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168946 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/AliasAnalysis.h

index be274afd15529671a7766ac2f2c526b47b18b65c..42adda3bd89a8560a809c76f3bbfc4b844f9c48a 100644 (file)
@@ -587,9 +587,9 @@ bool isNoAliasCall(const Value *V);
 /// isIdentifiedObject - Return true if this pointer refers to a distinct and
 /// identifiable object.  This returns true for:
 ///    Global Variables and Functions (but not Global Aliases)
-///    Allocas and Mallocs
+///    Allocas
 ///    ByVal and NoAlias Arguments
-///    NoAlias returns
+///    NoAlias returns (e.g. calls to malloc)
 ///
 bool isIdentifiedObject(const Value *V);