[llvm-commits] CVS: llvm/lib/Target/MRegisterInfo.cpp
Jim Laskey
jlaskey at apple.com
Wed Jan 24 10:45:38 PST 2007
Changes in directory llvm/lib/Target:
MRegisterInfo.cpp updated: 1.17 -> 1.18
---
Log message:
Repair debug frames as a prelude to eh_frames. Switched to using MachineMoves
by value so that clean up is less confusing (these vectors tend to be small.)
---
Diffs of the changes: (+1 -1)
MRegisterInfo.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/MRegisterInfo.cpp
diff -u llvm/lib/Target/MRegisterInfo.cpp:1.17 llvm/lib/Target/MRegisterInfo.cpp:1.18
--- llvm/lib/Target/MRegisterInfo.cpp:1.17 Fri Nov 17 15:19:15 2006
+++ llvm/lib/Target/MRegisterInfo.cpp Wed Jan 24 12:45:13 2007
@@ -64,7 +64,7 @@
/// getInitialFrameState - Returns a list of machine moves that are assumed
/// on entry to a function.
void
-MRegisterInfo::getInitialFrameState(std::vector<MachineMove *> &Moves) const {
+MRegisterInfo::getInitialFrameState(std::vector<MachineMove> &Moves) const {
// Default is to do nothing.
}
More information about the llvm-commits
mailing list