1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[AArch64] Silence an unused variable warning in Release builds. NFC.

llvm-svn: 306738
This commit is contained in:
Chad Rosier 2017-06-29 20:43:35 +00:00
parent 8ef40f62c6
commit 186d557ba4

View File

@ -271,6 +271,7 @@ bool AArch64CondBrTuning::tryToTuneBranch(MachineInstr &MI,
}
break;
}
(void)NewCmp; (void)NewBr;
assert(NewCmp && NewBr && "Expected new instructions.");
DEBUG(dbgs() << " with instruction:\n ");