diff options
| author | Owen Anderson <resistor@mac.com> | 2010-08-23 17:52:01 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2010-08-23 17:52:01 +0000 |
| commit | d31d82d75ccfc0995f42da8e01bcfcca287168e6 (patch) | |
| tree | d78cc314121d2ed2d51d2d2d1d0b4644f89d301c /llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp | |
| parent | 0bf9c59d2f20510c7bca2b50bca2f17e2a65f460 (diff) | |
| download | bcm5719-llvm-d31d82d75ccfc0995f42da8e01bcfcca287168e6.tar.gz bcm5719-llvm-d31d82d75ccfc0995f42da8e01bcfcca287168e6.zip | |
Now that PassInfo and Pass::ID have been separated, move the rest of the passes over to the new registration API.
llvm-svn: 111815
Diffstat (limited to 'llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp b/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp index 1dcc674eedc..34c484103cf 100644 --- a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -59,11 +59,9 @@ DisableCrossClassJoin("disable-cross-class-join", cl::desc("Avoid coalescing cross register class copies"), cl::init(false), cl::Hidden); -static RegisterPass<SimpleRegisterCoalescing> -X("simple-register-coalescing", "Simple Register Coalescing"); - -// Declare that we implement the RegisterCoalescer interface -static RegisterAnalysisGroup<RegisterCoalescer, true/*The Default*/> V(X); +INITIALIZE_AG_PASS(SimpleRegisterCoalescing, RegisterCoalescer, + "simple-register-coalescing", "Simple Register Coalescing", + false, false, true); char &llvm::SimpleRegisterCoalescingID = SimpleRegisterCoalescing::ID; |

