diff options
author | Owen Anderson <resistor@mac.com> | 2007-07-25 21:30:15 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-07-25 21:30:15 +0000 |
commit | 1557f915b3a21ab7010c7fe566c4e94920221474 (patch) | |
tree | 091aac002bc3e150e6ede6563e2e0b34d5857ac7 | |
parent | a9f583526225323770ae0d33efc4d06d8455c1a3 (diff) | |
download | external_llvm-1557f915b3a21ab7010c7fe566c4e94920221474.zip external_llvm-1557f915b3a21ab7010c7fe566c4e94920221474.tar.gz external_llvm-1557f915b3a21ab7010c7fe566c4e94920221474.tar.bz2 |
Forgot to include this file in my last commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40496 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/MemoryDependenceAnalysis.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index 4428bb6..8679cd9 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -39,7 +39,8 @@ class MemoryDependenceAnalysis : public FunctionPass { Instruction* getCallSiteDependency(CallSite C, Instruction* start, bool local = true); bool nonLocalHelper(Instruction* query, BasicBlock* block, - DenseMap<BasicBlock*, Value*>& resp); + DenseMap<BasicBlock*, Value*>& resp, + SmallPtrSet<BasicBlock*, 4>& visited); public: static Instruction* NonLocal; |