forked from OSchip/llvm-project
[LLParser] Remove unused variable after r359987. NFC
llvm-svn: 359988
This commit is contained in:
parent
f6e07c472d
commit
922e252a70
|
@ -3370,7 +3370,6 @@ bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
|
||||||
unsigned Opc = Lex.getUIntVal();
|
unsigned Opc = Lex.getUIntVal();
|
||||||
Constant *Val0, *Val1;
|
Constant *Val0, *Val1;
|
||||||
Lex.Lex();
|
Lex.Lex();
|
||||||
LocTy ModifierLoc = Lex.getLoc();
|
|
||||||
if (Opc == Instruction::Add || Opc == Instruction::Sub ||
|
if (Opc == Instruction::Add || Opc == Instruction::Sub ||
|
||||||
Opc == Instruction::Mul || Opc == Instruction::Shl) {
|
Opc == Instruction::Mul || Opc == Instruction::Shl) {
|
||||||
if (EatIfPresent(lltok::kw_nuw))
|
if (EatIfPresent(lltok::kw_nuw))
|
||||||
|
|
Loading…
Reference in New Issue