forked from OSchip/llvm-project
[globalisel][tablegen] Fix another unused variable warning introduced by r307159
llvm-svn: 307168
This commit is contained in:
parent
15309044ba
commit
d560a64e42
|
@ -191,7 +191,7 @@ bool InstructionSelector::executeMatchTable(
|
|||
break;
|
||||
}
|
||||
case GIR_BuildMI: {
|
||||
int64_t InsnID = *Command++;
|
||||
int64_t InsnID LLVM_ATTRIBUTE_UNUSED = *Command++;
|
||||
int64_t Opcode = *Command++;
|
||||
assert((size_t)InsnID == OutMIs.size() &&
|
||||
"Expected to store MIs in order");
|
||||
|
|
Loading…
Reference in New Issue