diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-01-24 18:45:13 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-01-24 18:45:13 +0000 |
commit | 5e73d5bd2e98afda12fa69a7ea83050c69be0d34 (patch) | |
tree | 0b1ab52ac594e70591f43d7d8847aee36dfb27bf /lib/Target/MRegisterInfo.cpp | |
parent | 7cce0ac42b6bb2fbbbadb542a0b589bd6db7de2e (diff) |
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.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MRegisterInfo.cpp')
-rw-r--r-- | lib/Target/MRegisterInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/MRegisterInfo.cpp b/lib/Target/MRegisterInfo.cpp index 515ff9af73..01295e802a 100644 --- a/lib/Target/MRegisterInfo.cpp +++ b/lib/Target/MRegisterInfo.cpp @@ -64,7 +64,7 @@ void MRegisterInfo::getLocation(MachineFunction &MF, unsigned Index, /// 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. } |