[llvm-commits] [llvm] r168946 - /llvm/trunk/include/llvm/Analysis/AliasAnalysis.h

Dan Gohman dan433584 at gmail.com
Thu Nov 29 13:58:48 PST 2012


Author: djg
Date: Thu Nov 29 15:58:47 2012
New Revision: 168946

URL: http://llvm.org/viewvc/llvm-project?rev=168946&view=rev
Log:
Update comment for malloc being a library call now, rather than an instruction.

Modified:
    llvm/trunk/include/llvm/Analysis/AliasAnalysis.h

Modified: llvm/trunk/include/llvm/Analysis/AliasAnalysis.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/AliasAnalysis.h?rev=168946&r1=168945&r2=168946&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/AliasAnalysis.h (original)
+++ llvm/trunk/include/llvm/Analysis/AliasAnalysis.h Thu Nov 29 15:58:47 2012
@@ -587,9 +587,9 @@
 /// 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);
 





More information about the llvm-commits mailing list