mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-19 04:31:17 +00:00
Remove dead variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225233 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
943a34f68b
commit
248063bb27
lib/Target/Mips
@ -27,7 +27,7 @@ using namespace llvm;
|
|||||||
MipsSEInstrInfo::MipsSEInstrInfo(const MipsSubtarget &STI)
|
MipsSEInstrInfo::MipsSEInstrInfo(const MipsSubtarget &STI)
|
||||||
: MipsInstrInfo(STI, STI.getRelocationModel() == Reloc::PIC_ ? Mips::B
|
: MipsInstrInfo(STI, STI.getRelocationModel() == Reloc::PIC_ ? Mips::B
|
||||||
: Mips::J),
|
: Mips::J),
|
||||||
RI(STI), IsN64(STI.isABI_N64()) {}
|
RI(STI) {}
|
||||||
|
|
||||||
const MipsRegisterInfo &MipsSEInstrInfo::getRegisterInfo() const {
|
const MipsRegisterInfo &MipsSEInstrInfo::getRegisterInfo() const {
|
||||||
return RI;
|
return RI;
|
||||||
|
@ -21,7 +21,6 @@ namespace llvm {
|
|||||||
|
|
||||||
class MipsSEInstrInfo : public MipsInstrInfo {
|
class MipsSEInstrInfo : public MipsInstrInfo {
|
||||||
const MipsSERegisterInfo RI;
|
const MipsSERegisterInfo RI;
|
||||||
bool IsN64;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit MipsSEInstrInfo(const MipsSubtarget &STI);
|
explicit MipsSEInstrInfo(const MipsSubtarget &STI);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user