diff options
author | Owen Anderson <resistor@mac.com> | 2010-10-13 21:49:58 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-10-13 21:49:58 +0000 |
commit | c266a366252139125aaa27702007d33ba0d9f1b3 (patch) | |
tree | 5071abb3c4945a8eda202d1b4dc4447c3808c582 /llvm/lib/CodeGen/RegisterCoalescer.cpp | |
parent | 2a4d99ab62289f9c88d170111ebe8e7ae22c44d0 (diff) | |
download | bcm5719-llvm-c266a366252139125aaa27702007d33ba0d9f1b3.tar.gz bcm5719-llvm-c266a366252139125aaa27702007d33ba0d9f1b3.zip |
Analysis groups need to initialize their default implementations.
llvm-svn: 116441
Diffstat (limited to 'llvm/lib/CodeGen/RegisterCoalescer.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegisterCoalescer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegisterCoalescer.cpp b/llvm/lib/CodeGen/RegisterCoalescer.cpp index 657134a9ab7..407559a211a 100644 --- a/llvm/lib/CodeGen/RegisterCoalescer.cpp +++ b/llvm/lib/CodeGen/RegisterCoalescer.cpp @@ -24,7 +24,8 @@ using namespace llvm; // Register the RegisterCoalescer interface, providing a nice name to refer to. -INITIALIZE_ANALYSIS_GROUP(RegisterCoalescer, "Register Coalescer") +INITIALIZE_ANALYSIS_GROUP(RegisterCoalescer, "Register Coalescer", + SimpleRegisterCoalescing) char RegisterCoalescer::ID = 0; // RegisterCoalescer destructor: DO NOT move this to the header file |