diff options
author | Craig Topper <craig.topper@intel.com> | 2019-05-05 17:46:17 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2019-05-05 17:46:17 +0000 |
commit | 922e252a70b9d2af6c62d81544c6aa456f5c8ed4 (patch) | |
tree | 39abe14fa5bd8aad8f1e3dc73ef4cce89e3ff8ac /llvm/lib | |
parent | f6e07c472d38c436d2c31320cde4ef9557ec0f86 (diff) | |
download | bcm5719-llvm-922e252a70b9d2af6c62d81544c6aa456f5c8ed4.tar.gz bcm5719-llvm-922e252a70b9d2af6c62d81544c6aa456f5c8ed4.zip |
[LLParser] Remove unused variable after r359987. NFC
llvm-svn: 359988
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/AsmParser/LLParser.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index a58925c5a71..907bbdd7ef7 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/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)) |