aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/MemoryDependenceAnalysis.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-09-19 16:13:57 +0000
committerOwen Anderson <resistor@mac.com>2007-09-19 16:13:57 +0000
commit742f9b66822cb03af0cf7b94436e9d0288565591 (patch)
treec7a6a3b7d9db9fcc3a1665be9838164fa54b2df0 /lib/Analysis/MemoryDependenceAnalysis.cpp
parentac1220551fa3a4dc8b1eea2584920b8f18d7b571 (diff)
downloadexternal_llvm-742f9b66822cb03af0cf7b94436e9d0288565591.zip
external_llvm-742f9b66822cb03af0cf7b94436e9d0288565591.tar.gz
external_llvm-742f9b66822cb03af0cf7b94436e9d0288565591.tar.bz2
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.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp
index 0400ce3..edbf933 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",