Merge pull request #1733 from null77/fix-msvc-warn
Suppress MSVC warning about unused variable.
This commit is contained in:
commit
bd0f5ad278
2 changed files with 2 additions and 0 deletions
|
|
@ -258,6 +258,7 @@ void Builder::postProcess(Instruction& inst)
|
|||
assert(inst.getNumOperands() >= 3);
|
||||
unsigned int memoryAccess = inst.getImmediateOperand((inst.getOpCode() == OpStore) ? 2 : 1);
|
||||
assert(memoryAccess & MemoryAccessAlignedMask);
|
||||
static_cast<void>(memoryAccess);
|
||||
// Compute the index of the alignment operand.
|
||||
int alignmentIdx = 2;
|
||||
if (inst.getOpCode() == OpStore)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue