Update comment for malloc being a library call now, rather than an instruction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168946 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2012-11-29 21:58:47 +00:00
parent 4b896dd613
commit c63ee60ef0

View 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);