summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2015-01-06 01:12:42 +0000
committerEric Christopher <echristo@gmail.com>2015-01-06 01:12:42 +0000
commitcb0799c16db2b782a8aa54bdf58b66170d4c2270 (patch)
tree31f1ebc4f1804899ccf03ce356eeaa574d3e5c5b /llvm/lib/Target
parent822f1e4dc4656e438cf0cd2ec8c15a9bbfc964c0 (diff)
downloadbcm5719-llvm-cb0799c16db2b782a8aa54bdf58b66170d4c2270.tar.gz
bcm5719-llvm-cb0799c16db2b782a8aa54bdf58b66170d4c2270.zip
Remove dead variable.
llvm-svn: 225233
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/Mips/MipsSEInstrInfo.cpp2
-rw-r--r--llvm/lib/Target/Mips/MipsSEInstrInfo.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp b/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
index ddfef0529d2..19e5e925368 100644
--- a/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
+++ b/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
@@ -27,7 +27,7 @@ using namespace llvm;
MipsSEInstrInfo::MipsSEInstrInfo(const MipsSubtarget &STI)
: MipsInstrInfo(STI, STI.getRelocationModel() == Reloc::PIC_ ? Mips::B
: Mips::J),
- RI(STI), IsN64(STI.isABI_N64()) {}
+ RI(STI) {}
const MipsRegisterInfo &MipsSEInstrInfo::getRegisterInfo() const {
return RI;
diff --git a/llvm/lib/Target/Mips/MipsSEInstrInfo.h b/llvm/lib/Target/Mips/MipsSEInstrInfo.h
index b2d2301b3d2..d16fab2e92f 100644
--- a/llvm/lib/Target/Mips/MipsSEInstrInfo.h
+++ b/llvm/lib/Target/Mips/MipsSEInstrInfo.h
@@ -21,7 +21,6 @@ namespace llvm {
class MipsSEInstrInfo : public MipsInstrInfo {
const MipsSERegisterInfo RI;
- bool IsN64;
public:
explicit MipsSEInstrInfo(const MipsSubtarget &STI);
OpenPOWER on IntegriCloud