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

Chris Lattner lattner at cs.uiuc.edu
Wed May 24 10:04:35 PDT 2006



Changes in directory llvm/lib/CodeGen:

LiveIntervalAnalysis.cpp updated: 1.160 -> 1.161
TwoAddressInstructionPass.cpp updated: 1.33 -> 1.34
---
Log message:

Patches to make the LLVM sources more -pedantic clean.  Patch provided
by Anton Korobeynikov!  This is a step towards closing PR786: http://llvm.cs.uiuc.edu/PR786 .


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

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


Index: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff -u llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.160 llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.161
--- llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.160	Fri May 12 01:06:34 2006
+++ llvm/lib/CodeGen/LiveIntervalAnalysis.cpp	Wed May 24 12:04:04 2006
@@ -59,7 +59,7 @@
   EnableJoining("join-liveintervals",
                 cl::desc("Join compatible live intervals"),
                 cl::init(true));
-};
+}
 
 void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const
 {


Index: llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
diff -u llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.33 llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.34
--- llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.33	Thu May  4 12:52:23 2006
+++ llvm/lib/CodeGen/TwoAddressInstructionPass.cpp	Wed May 24 12:04:04 2006
@@ -60,7 +60,7 @@
 
   RegisterPass<TwoAddressInstructionPass>
   X("twoaddressinstruction", "Two-Address instruction pass");
-};
+}
 
 const PassInfo *llvm::TwoAddressInstructionPassID = X.getPassInfo();
 






More information about the llvm-commits mailing list