Return true if this pointer refers to a distinct and identifiable object.
Synopsis
Declared in <llvm/Analysis/AliasAnalysis.h>
bool
isIdentifiedObject(Value const* V);
Description
This returns true for: Global Variables and Functions (but not Global Aliases) Allocas ByVal and NoAlias Arguments NoAlias returns (e.g. calls to malloc)
Return Value
True if V refers to a distinct and identifiable object.
Parameters
Name |
Description |
V |
Pointer value to test. |
Created with MrDocs