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)
llvm-svn: 168946

llvm/include/llvm/Analysis/AliasAnalysis.h

index be274af..42adda3 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);