From fe8d8806f7cb3ddba1f4f77c53f728abd22eadc7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 31 Aug 2003 19:46:48 +0000 Subject: 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 --- include/llvm/Analysis/MemoryDepAnalysis.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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& S, ModRefTable& ModRefAfter); + void ProcessSCC(std::vector &SCC, ModRefTable& ModRefAfter, + bool HasLoop); friend class PgmDependenceGraph; -- cgit v1.2.3