forked from OSchip/llvm-project
the getLocationForSource/Dest methods can be static.
llvm-svn: 119929
This commit is contained in:
parent
663ba91cc6
commit
e69672c44f
|
|
@ -136,8 +136,8 @@ public:
|
||||||
Location getLocation(const LoadInst *LI);
|
Location getLocation(const LoadInst *LI);
|
||||||
Location getLocation(const StoreInst *SI);
|
Location getLocation(const StoreInst *SI);
|
||||||
Location getLocation(const VAArgInst *VI);
|
Location getLocation(const VAArgInst *VI);
|
||||||
Location getLocationForSource(const MemTransferInst *MTI);
|
static Location getLocationForSource(const MemTransferInst *MTI);
|
||||||
Location getLocationForDest(const MemTransferInst *MTI);
|
static Location getLocationForDest(const MemTransferInst *MTI);
|
||||||
|
|
||||||
/// Alias analysis result - Either we know for sure that it does not alias, we
|
/// Alias analysis result - Either we know for sure that it does not alias, we
|
||||||
/// know for sure it must alias, or we don't know anything: The two pointers
|
/// know for sure it must alias, or we don't know anything: The two pointers
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue