1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Allow clients to be more efficient.

llvm-svn: 12831
This commit is contained in:
Chris Lattner 2004-04-11 16:43:07 +00:00
parent ba50022f83
commit aa1c0d5e76

View File

@ -49,6 +49,10 @@ namespace {
ModRefResult getModRefInfo(CallSite CS, Value *P, unsigned Size);
/// hasNoModRefInfoForCalls - We have no way to test one call against
/// another, unless they are pure or const.
virtual bool hasNoModRefInfoForCalls() const { return true; }
/// pointsToConstantMemory - Chase pointers until we find a (constant
/// global) or not.
bool pointsToConstantMemory(const Value *P);