From 35e3aed169aa7fc9c7118f24e5e2a07e25bef512 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Thu, 6 Sep 2012 23:31:29 +0000 Subject: [PATCH] Remove unused variable introduced by r163346. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163359 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index 1e28df7e590..c038f4b5bea 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 -- 2.34.1