[llvm-commits] CVS: llvm/lib/Target/Skeleton/SkeletonRegisterInfo.h SkeletonRegisterInfo.cpp
Nate Begeman
natebegeman at mac.com
Sat Aug 14 15:01:49 PDT 2004
Changes in directory llvm/lib/Target/Skeleton:
SkeletonRegisterInfo.h updated: 1.1 -> 1.2
SkeletonRegisterInfo.cpp updated: 1.1 -> 1.2
---
Log message:
Eliminate MachineFunction& argument from eliminateFrameIndex in Skeleton target
---
Diffs of the changes: (+3 -4)
Index: llvm/lib/Target/Skeleton/SkeletonRegisterInfo.h
diff -u llvm/lib/Target/Skeleton/SkeletonRegisterInfo.h:1.1 llvm/lib/Target/Skeleton/SkeletonRegisterInfo.h:1.2
--- llvm/lib/Target/Skeleton/SkeletonRegisterInfo.h:1.1 Fri Jul 16 02:11:13 2004
+++ llvm/lib/Target/Skeleton/SkeletonRegisterInfo.h Sat Aug 14 17:01:38 2004
@@ -43,8 +43,7 @@
MachineBasicBlock &MBB,
MachineBasicBlock::iterator I) const;
- void eliminateFrameIndex(MachineFunction &MF,
- MachineBasicBlock::iterator II) const;
+ void eliminateFrameIndex(MachineBasicBlock::iterator II) const;
void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
Index: llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp
diff -u llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp:1.1 llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp:1.2
--- llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp:1.1 Fri Jul 16 02:11:12 2004
+++ llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp Sat Aug 14 17:01:38 2004
@@ -50,8 +50,8 @@
abort();
}
-void SkeletonRegisterInfo::eliminateFrameIndex(MachineFunction &MF,
- MachineBasicBlock::iterator II) const {
+void SkeletonRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II)
+ const {
abort();
}
More information about the llvm-commits
mailing list