diff options
author | Owen Anderson <resistor@mac.com> | 2010-10-06 21:02:27 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-10-06 21:02:27 +0000 |
commit | ad8134f03b0c930538d69a20adde542ed941d55a (patch) | |
tree | bfc4bb25fe931a2a16df94b8a9807460c628f5db /llvm/lib/CodeGen/RegisterCoalescer.cpp | |
parent | 284fa417ec544c3cdafe9b7a9453cf68aa88a56d (diff) | |
download | bcm5719-llvm-ad8134f03b0c930538d69a20adde542ed941d55a.tar.gz bcm5719-llvm-ad8134f03b0c930538d69a20adde542ed941d55a.zip |
Hide analysis group registration behind a macro, just like pass registration.
llvm-svn: 115835
Diffstat (limited to 'llvm/lib/CodeGen/RegisterCoalescer.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegisterCoalescer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegisterCoalescer.cpp b/llvm/lib/CodeGen/RegisterCoalescer.cpp index 02b5539f0f4..b97a3a09414 100644 --- a/llvm/lib/CodeGen/RegisterCoalescer.cpp +++ b/llvm/lib/CodeGen/RegisterCoalescer.cpp @@ -24,7 +24,7 @@ using namespace llvm; // Register the RegisterCoalescer interface, providing a nice name to refer to. -static RegisterAnalysisGroup<RegisterCoalescer> Z("Register Coalescer"); +INITIALIZE_ANALYSIS_GROUP(RegisterCoalescer, "Register Coalescer"); char RegisterCoalescer::ID = 0; // RegisterCoalescer destructor: DO NOT move this to the header file |