summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-31 19:46:48 +0000
committerChris Lattner <sabre@nondot.org>2003-08-31 19:46:48 +0000
commitfe8d8806f7cb3ddba1f4f77c53f728abd22eadc7 (patch)
tree58b0deaabfcb7ecfa5e5ef33a64e070dc4bea5ea /include
parent0c6a271d9163319b6699b2210b2da74175df4205 (diff)
downloadllvm-fe8d8806f7cb3ddba1f4f77c53f728abd22eadc7.tar.gz
llvm-fe8d8806f7cb3ddba1f4f77c53f728abd22eadc7.tar.bz2
llvm-fe8d8806f7cb3ddba1f4f77c53f728abd22eadc7.tar.xz
Remove explicit passing of SCC's around as objects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8267 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/MemoryDepAnalysis.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/MemoryDepAnalysis.h b/include/llvm/Analysis/MemoryDepAnalysis.h
index 82a0d77761..f4b96b9907 100644
--- a/include/llvm/Analysis/MemoryDepAnalysis.h
+++ b/include/llvm/Analysis/MemoryDepAnalysis.h
@@ -15,7 +15,6 @@
#include "llvm/Analysis/DependenceGraph.h"
#include "llvm/Pass.h"
-#include "Support/TarjanSCCIterator.h"
#include "Support/hash_map"
class ModRefTable;
@@ -43,7 +42,8 @@ class MemoryDepAnalysis : public Pass {
const FunctionModRefInfo* funcModRef;
/// Internal routine that processes each SCC of the CFG.
- void ProcessSCC(SCC<Function*>& S, ModRefTable& ModRefAfter);
+ void ProcessSCC(std::vector<BasicBlock*> &SCC, ModRefTable& ModRefAfter,
+ bool HasLoop);
friend class PgmDependenceGraph;