diff options
author | Owen Anderson <resistor@mac.com> | 2007-09-19 16:13:57 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-09-19 16:13:57 +0000 |
commit | 742f9b66822cb03af0cf7b94436e9d0288565591 (patch) | |
tree | c7a6a3b7d9db9fcc3a1665be9838164fa54b2df0 /lib/Analysis/MemoryDependenceAnalysis.cpp | |
parent | ac1220551fa3a4dc8b1eea2584920b8f18d7b571 (diff) |
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
Diffstat (limited to 'lib/Analysis/MemoryDependenceAnalysis.cpp')
-rw-r--r-- | lib/Analysis/MemoryDependenceAnalysis.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp index 0400ce3429..edbf9337f3 100644 --- a/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -34,6 +34,7 @@ char MemoryDependenceAnalysis::ID = 0; Instruction* const MemoryDependenceAnalysis::NonLocal = (Instruction*)-3; Instruction* const MemoryDependenceAnalysis::None = (Instruction*)-4; +Instruction* const MemoryDependenceAnalysis::Dirty = (Instruction*)-5; // Register this pass... static RegisterPass<MemoryDependenceAnalysis> X("memdep", |