diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 07:31:03 +0000 | 
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 07:31:03 +0000 | 
| commit | 1dba6814c9c612d34d5f33e9f1ca2d75a4dfa2c4 (patch) | |
| tree | e00bf4c6e1071ba2862ed1c9ca48f2c7881bbf88 /llvm/lib/Target/CellSPU/SPUInstrInfo.h | |
| parent | 0d611979a84481c64aed3f9f8d01277c28ec2ad1 (diff) | |
| download | bcm5719-llvm-1dba6814c9c612d34d5f33e9f1ca2d75a4dfa2c4.tar.gz bcm5719-llvm-1dba6814c9c612d34d5f33e9f1ca2d75a4dfa2c4.zip | |
Replace copyRegToReg with copyPhysReg for CellSPU.
llvm-svn: 108084
Diffstat (limited to 'llvm/lib/Target/CellSPU/SPUInstrInfo.h')
| -rw-r--r-- | llvm/lib/Target/CellSPU/SPUInstrInfo.h | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/llvm/lib/Target/CellSPU/SPUInstrInfo.h b/llvm/lib/Target/CellSPU/SPUInstrInfo.h index 0a914865afa..baaac7ec1a2 100644 --- a/llvm/lib/Target/CellSPU/SPUInstrInfo.h +++ b/llvm/lib/Target/CellSPU/SPUInstrInfo.h @@ -56,12 +56,10 @@ namespace llvm {      unsigned isStoreToStackSlot(const MachineInstr *MI,                                  int &FrameIndex) const; -    virtual bool copyRegToReg(MachineBasicBlock &MBB, -                              MachineBasicBlock::iterator MI, -                              unsigned DestReg, unsigned SrcReg, -                              const TargetRegisterClass *DestRC, -                              const TargetRegisterClass *SrcRC, -                              DebugLoc DL) const; +    virtual void copyPhysReg(MachineBasicBlock &MBB, +                             MachineBasicBlock::iterator I, DebugLoc DL, +                             unsigned DestReg, unsigned SrcReg, +                             bool KillSrc) const;      //! Store a register to a stack slot, based on its register class.      virtual void storeRegToStackSlot(MachineBasicBlock &MBB, | 

