[llvm-commits] CVS: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp SparcV9RegisterInfo.h

Nate Begeman natebegeman at mac.com
Sat Aug 14 15:03:39 PDT 2004



Changes in directory llvm/lib/Target/SparcV9:

SparcV9RegisterInfo.cpp updated: 1.1 -> 1.2
SparcV9RegisterInfo.h updated: 1.3 -> 1.4
---
Log message:

Eliminate MachineFunction& argument from eliminateFrameIndex in SparcV9 target

---
Diffs of the changes:  (+3 -4)

Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.1 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.2
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.1	Sun Apr 25 01:32:05 2004
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp	Sat Aug 14 17:03:29 2004
@@ -297,8 +297,8 @@
   abort ();
 }
 
-void SparcV9RegisterInfo::eliminateFrameIndex(MachineFunction &MF,
-                                         MachineBasicBlock::iterator MI) const {
+void SparcV9RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator MI) 
+  const {
   abort ();
 }
 


Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.3 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.4
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.3	Thu May 27 16:41:48 2004
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h	Sat Aug 14 17:03:29 2004
@@ -37,8 +37,7 @@
                     MachineBasicBlock::iterator MI,
                     unsigned DestReg, unsigned SrcReg,
                     const TargetRegisterClass *RC) const;
-  void eliminateFrameIndex (MachineFunction &MF,
-                            MachineBasicBlock::iterator MI) const;
+  void eliminateFrameIndex (MachineBasicBlock::iterator MI) const;
   void emitPrologue (MachineFunction &MF) const;
   void emitEpilogue (MachineFunction &MF, MachineBasicBlock &MBB) const;
 };






More information about the llvm-commits mailing list