mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-23 14:25:07 +00:00
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
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user