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 | f6c63fec92287dfbfd128c876e8753f0e57bd0c3 (patch) | |
tree | 9c238012e1844cc08b6c24536c7d0177642a439e /llvm/lib/Target/PowerPC/PPCRegisterInfo.h | |
parent | 8a75518f0bbb708a9bffbb275e4c47edad853ce8 (diff) | |
download | bcm5719-llvm-f6c63fec92287dfbfd128c876e8753f0e57bd0c3.tar.gz bcm5719-llvm-f6c63fec92287dfbfd128c876e8753f0e57bd0c3.zip |
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.)
llvm-svn: 33488
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCRegisterInfo.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCRegisterInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCRegisterInfo.h b/llvm/lib/Target/PowerPC/PPCRegisterInfo.h index 5408c9f0c42..7d35c6a26ae 100644 --- a/llvm/lib/Target/PowerPC/PPCRegisterInfo.h +++ b/llvm/lib/Target/PowerPC/PPCRegisterInfo.h @@ -81,7 +81,7 @@ public: // Debug information queries. unsigned getRARegister() const; unsigned getFrameRegister(MachineFunction &MF) const; - void getInitialFrameState(std::vector<MachineMove *> &Moves) const; + void getInitialFrameState(std::vector<MachineMove> &Moves) const; }; } // end namespace llvm |