aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-07-25 21:30:15 +0000
committerOwen Anderson <resistor@mac.com>2007-07-25 21:30:15 +0000
commit02d6852a1c295030a8cff6b665c57e97c2624df5 (patch)
tree091aac002bc3e150e6ede6563e2e0b34d5857ac7
parent3dfcf33cf897b04c95e252bbd645e9930f608701 (diff)
downloadexternal_llvm-02d6852a1c295030a8cff6b665c57e97c2624df5.zip
external_llvm-02d6852a1c295030a8cff6b665c57e97c2624df5.tar.gz
external_llvm-02d6852a1c295030a8cff6b665c57e97c2624df5.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.h3
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;