mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
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:
@ -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",
|
||||
|
Reference in New Issue
Block a user