mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-05 01:01:45 +00:00
Minor cleanups to follow the common convention for pass
registration variables. llvm-svn: 111598
This commit is contained in:
parent
039675f5cf
commit
3998b45134
@ -61,16 +61,16 @@ namespace {
|
||||
AU.addRequired<CallGraph>();
|
||||
}
|
||||
};
|
||||
|
||||
char CFGSCC::ID = 0;
|
||||
RegisterPass<CFGSCC>
|
||||
Y("print-cfg-sccs", "Print SCCs of each function CFG");
|
||||
|
||||
char CallGraphSCC::ID = 0;
|
||||
RegisterPass<CallGraphSCC>
|
||||
Z("print-callgraph-sccs", "Print SCCs of the Call Graph");
|
||||
}
|
||||
|
||||
char CFGSCC::ID = 0;
|
||||
static RegisterPass<CFGSCC>
|
||||
Y("print-cfg-sccs", "Print SCCs of each function CFG");
|
||||
|
||||
char CallGraphSCC::ID = 0;
|
||||
static RegisterPass<CallGraphSCC>
|
||||
Z("print-callgraph-sccs", "Print SCCs of the Call Graph");
|
||||
|
||||
bool CFGSCC::runOnFunction(Function &F) {
|
||||
unsigned sccNum = 0;
|
||||
outs() << "SCCs for Function " << F.getName() << " in PostOrder:";
|
||||
|
Loading…
x
Reference in New Issue
Block a user