Add a flag to mark a dirty cache entry. This is not yet used, but will eventually

help non-local memdep caching.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42137 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson
2007-09-19 16:13:57 +00:00
parent ac1220551f
commit 742f9b6682
2 changed files with 5 additions and 0 deletions

View File

@ -59,6 +59,10 @@ class MemoryDependenceAnalysis : public FunctionPass {
// Special marker indicating that the query has no dependency at all
static Instruction* const None;
// Special marker indicating a dirty cache entry
static Instruction* const Dirty;
static char ID; // Class identification, replacement for typeinfo
MemoryDependenceAnalysis() : FunctionPass((intptr_t)&ID) {}