diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-09-06 23:31:29 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-09-06 23:31:29 +0000 |
commit | 35e3aed169aa7fc9c7118f24e5e2a07e25bef512 (patch) | |
tree | 165c7a2fd873dda3d94767db109bd55f36e4bcce | |
parent | a36ff7b275d704a2a8fe8ac6bd4aaf09959003ea (diff) |
Remove unused variable introduced by r163346.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163359 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index 1e28df7e59..c038f4b5be 100644 --- a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -507,8 +507,6 @@ bool MipsAsmParser::parseRelocOperand(const MCExpr *&Res) { } else return true; //parenthesis must follow reloc operand - SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1); - //Check the type of the expression if (MCConstantExpr::classof(IdVal)) { //it's a constant, evaluate lo or hi value |