forked from OSchip/llvm-project
ExpandPseudos doesn't have any dependencies, so it can use the
simple form of INITIALIZE_PASS. llvm-svn: 119707
This commit is contained in:
parent
f1ebfc1544
commit
21a9683641
|
@ -43,9 +43,7 @@ namespace {
|
|||
} // end anonymous namespace
|
||||
|
||||
char ExpandPseudos::ID = 0;
|
||||
INITIALIZE_PASS_BEGIN(ExpandPseudos, "expand-pseudos",
|
||||
"Expand CodeGen Psueod-instructions", false, false)
|
||||
INITIALIZE_PASS_END(ExpandPseudos, "expand-pseudos",
|
||||
INITIALIZE_PASS(ExpandPseudos, "expand-pseudos",
|
||||
"Expand CodeGen Psueod-instructions", false, false)
|
||||
|
||||
FunctionPass *llvm::createExpandPseudosPass() {
|
||||
|
|
Loading…
Reference in New Issue