diff options
author | Dan Gohman <gohman@apple.com> | 2010-11-18 17:14:05 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-11-18 17:14:05 +0000 |
commit | 21a968364110442986077e86bd7a51fd0d86f974 (patch) | |
tree | e2a562dea19be6f70fddaa88e7d735d0e4bb50c1 /llvm/lib/CodeGen | |
parent | f1ebfc1544b53bb9eedb79951d4c81ebeec35224 (diff) | |
download | bcm5719-llvm-21a968364110442986077e86bd7a51fd0d86f974.tar.gz bcm5719-llvm-21a968364110442986077e86bd7a51fd0d86f974.zip |
ExpandPseudos doesn't have any dependencies, so it can use the
simple form of INITIALIZE_PASS.
llvm-svn: 119707
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/ExpandPseudos.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/ExpandPseudos.cpp b/llvm/lib/CodeGen/ExpandPseudos.cpp index 2f7bc8f6d46..6e7ff593a0a 100644 --- a/llvm/lib/CodeGen/ExpandPseudos.cpp +++ b/llvm/lib/CodeGen/ExpandPseudos.cpp @@ -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() { |