diff options
Diffstat (limited to 'contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h')
-rw-r--r-- | contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h b/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h index 08c00ec8ccef..44a6dac2ccbd 100644 --- a/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h +++ b/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h @@ -48,20 +48,22 @@ public: void storeRegToStack(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, - unsigned SrcReg, bool isKill, int FrameIndex, + Register SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, int64_t Offset) const override; void loadRegFromStack(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, - unsigned DestReg, int FrameIndex, + Register DestReg, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, int64_t Offset) const override; bool expandPostRAPseudo(MachineInstr &MI) const override; + bool isBranchWithImm(unsigned Opc) const override; + unsigned getOppositeBranchOpc(unsigned Opc) const override; /// Adjust SP by Amount bytes. |