[llvm-commits] CVS: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp MachineModuleInfo.cpp

Lauro Ramos Venancio lauro.venancio at gmail.com
Wed May 2 13:38:21 PDT 2007



Changes in directory llvm/lib/CodeGen:

LiveIntervalAnalysis.cpp updated: 1.240 -> 1.241
MachineModuleInfo.cpp updated: 1.6 -> 1.7
---
Log message:

Fix build error.


---
Diffs of the changes:  (+2 -2)

 LiveIntervalAnalysis.cpp |    2 +-
 MachineModuleInfo.cpp    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff -u llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.240 llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.241
--- llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.240	Tue May  1 16:15:46 2007
+++ llvm/lib/CodeGen/LiveIntervalAnalysis.cpp	Wed May  2 15:37:47 2007
@@ -44,8 +44,8 @@
 STATISTIC(numFolded   , "Number of loads/stores folded into instructions");
 STATISTIC(numAborts   , "Number of times interval joining aborted");
 
+const int LiveIntervals::ID = 0;
 namespace {
-  const int LiveIntervals::ID = 0;
   RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
 
   static cl::opt<bool>


Index: llvm/lib/CodeGen/MachineModuleInfo.cpp
diff -u llvm/lib/CodeGen/MachineModuleInfo.cpp:1.6 llvm/lib/CodeGen/MachineModuleInfo.cpp:1.7
--- llvm/lib/CodeGen/MachineModuleInfo.cpp:1.6	Tue May  1 16:15:46 2007
+++ llvm/lib/CodeGen/MachineModuleInfo.cpp	Wed May  2 15:37:47 2007
@@ -28,9 +28,9 @@
 
 // Handle the Pass registration stuff necessary to use TargetData's.
 namespace {
-  const int MachineModuleInfo::ID = 0;
   RegisterPass<MachineModuleInfo> X("machinemoduleinfo", "Module Information");
 }
+const int MachineModuleInfo::ID = 0;
 
 //===----------------------------------------------------------------------===//
 






More information about the llvm-commits mailing list