From: Craig Topper Date: Sun, 5 May 2019 17:46:17 +0000 (+0000) Subject: [LLParser] Remove unused variable after r359987. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56b34911f3597e17078996f9a370e2342220259e;p=llvm [LLParser] Remove unused variable after r359987. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359988 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index a58925c5a71..907bbdd7ef7 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -3370,7 +3370,6 @@ bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) { unsigned Opc = Lex.getUIntVal(); Constant *Val0, *Val1; Lex.Lex(); - LocTy ModifierLoc = Lex.getLoc(); if (Opc == Instruction::Add || Opc == Instruction::Sub || Opc == Instruction::Mul || Opc == Instruction::Shl) { if (EatIfPresent(lltok::kw_nuw))