mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-27 05:32:22 +00:00
Remove unused private field to silence build warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162426 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bd5bc2161c
commit
71eab96bfd
@ -26,7 +26,7 @@ using namespace llvm;
|
||||
|
||||
Mips16InstrInfo::Mips16InstrInfo(MipsTargetMachine &tm)
|
||||
: MipsInstrInfo(tm, /* FIXME: set mips16 unconditional br */ 0),
|
||||
RI(*tm.getSubtargetImpl(), *this) {}
|
||||
RI(*tm.getSubtargetImpl()) {}
|
||||
|
||||
const MipsRegisterInfo &Mips16InstrInfo::getRegisterInfo() const {
|
||||
return RI;
|
||||
|
@ -38,9 +38,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
Mips16RegisterInfo::Mips16RegisterInfo(const MipsSubtarget &ST,
|
||||
const Mips16InstrInfo &I)
|
||||
: MipsRegisterInfo(ST), TII(I) {}
|
||||
Mips16RegisterInfo::Mips16RegisterInfo(const MipsSubtarget &ST)
|
||||
: MipsRegisterInfo(ST) {}
|
||||
|
||||
// This function eliminate ADJCALLSTACKDOWN,
|
||||
// ADJCALLSTACKUP pseudo instructions
|
||||
|
@ -20,10 +20,8 @@ namespace llvm {
|
||||
class Mips16InstrInfo;
|
||||
|
||||
class Mips16RegisterInfo : public MipsRegisterInfo {
|
||||
const Mips16InstrInfo &TII;
|
||||
|
||||
public:
|
||||
Mips16RegisterInfo(const MipsSubtarget &Subtarget, const Mips16InstrInfo &I);
|
||||
Mips16RegisterInfo(const MipsSubtarget &Subtarget);
|
||||
|
||||
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
||||
MachineBasicBlock &MBB,
|
||||
|
Loading…
x
Reference in New Issue
Block a user