[llvm-commits] [llvm] r45629 - /llvm/trunk/lib/CodeGen/MachineDominators.cpp

Chris Lattner sabre at nondot.org
Sat Jan 5 12:15:42 PST 2008


Author: lattner
Date: Sat Jan  5 14:15:42 2008
New Revision: 45629

URL: http://llvm.org/viewvc/llvm-project?rev=45629&view=rev
Log:
Fix build issue on certain compilers.

Modified:
    llvm/trunk/lib/CodeGen/MachineDominators.cpp

Modified: llvm/trunk/lib/CodeGen/MachineDominators.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineDominators.cpp?rev=45629&r1=45628&r2=45629&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/MachineDominators.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineDominators.cpp Sat Jan  5 14:15:42 2008
@@ -20,8 +20,9 @@
 TEMPLATE_INSTANTIATION(class DomTreeNodeBase<MachineBasicBlock>);
 TEMPLATE_INSTANTIATION(class DominatorTreeBase<MachineBasicBlock>);
 
+char MachineDominatorTree::ID = 0;
+
 namespace {
-  char MachineDominatorTree::ID = 0;
   RegisterPass<MachineDominatorTree>
   E("machinedomtree", "MachineDominator Tree Construction", true);
 }





More information about the llvm-commits mailing list