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

Chris Lattner lattner at cs.uiuc.edu
Sun Aug 15 14:56:15 PDT 2004



Changes in directory llvm/lib/Target/SparcV9:

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

These methods no longer take a TargetRegisterClass* operand.


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

Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.2 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.3
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.2	Sat Aug 14 17:03:29 2004
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp	Sun Aug 15 16:56:04 2004
@@ -278,15 +278,13 @@
 
 int SparcV9RegisterInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
                                          MachineBasicBlock::iterator MI,
-                                         unsigned SrcReg, int FrameIndex,
-                                         const TargetRegisterClass *RC) const {
+                                         unsigned SrcReg, int FrameIndex) const{
   abort ();
 }
 
 int SparcV9RegisterInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
                                           MachineBasicBlock::iterator MI,
-                                          unsigned DestReg, int FrameIndex,
-                                          const TargetRegisterClass *RC) const {
+                                          unsigned DestReg, int FrameIndex) const {
   abort ();
 }
 


Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.4 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.5
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.4	Sat Aug 14 17:03:29 2004
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h	Sun Aug 15 16:56:04 2004
@@ -27,12 +27,10 @@
   // The rest of these are stubs... for now.
   int storeRegToStackSlot (MachineBasicBlock &MBB,
                            MachineBasicBlock::iterator MI,
-                           unsigned SrcReg, int FrameIndex,
-                           const TargetRegisterClass *RC) const;
+                           unsigned SrcReg, int FrameIndex) const;
   int loadRegFromStackSlot (MachineBasicBlock &MBB,
                             MachineBasicBlock::iterator MI,
-                            unsigned DestReg, int FrameIndex,
-                            const TargetRegisterClass *RC) const;
+                            unsigned DestReg, int FrameIndex) const;
   int copyRegToReg (MachineBasicBlock &MBB,
                     MachineBasicBlock::iterator MI,
                     unsigned DestReg, unsigned SrcReg,






More information about the llvm-commits mailing list