mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Minor cleanups to follow the common convention for pass
registration variables. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111596 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -79,12 +79,12 @@ namespace {
|
||||
AU.setPreservesAll();
|
||||
}
|
||||
};
|
||||
|
||||
char CallGraphPrinter::ID = 0;
|
||||
RegisterPass<CallGraphPrinter> P2("dot-callgraph",
|
||||
"Print Call Graph to 'dot' file");
|
||||
}
|
||||
|
||||
char CallGraphPrinter::ID = 0;
|
||||
static RegisterPass<CallGraphPrinter> P2("dot-callgraph",
|
||||
"Print Call Graph to 'dot' file");
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// DomInfoPrinter Pass
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -110,8 +110,8 @@ namespace {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
char DomInfoPrinter::ID = 0;
|
||||
static RegisterPass<DomInfoPrinter>
|
||||
DIP("print-dom-info", "Dominator Info Printer", true, true);
|
||||
}
|
||||
|
||||
char DomInfoPrinter::ID = 0;
|
||||
static RegisterPass<DomInfoPrinter>
|
||||
DIP("print-dom-info", "Dominator Info Printer", true, true);
|
||||
|
Reference in New Issue
Block a user