1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

[AArch64] Fix -Wunused-variable in -DLLVM_ENABLE_ASSERTIONS=off builds after r366857

llvm-svn: 366866
This commit is contained in:
Fangrui Song 2019-07-24 01:59:44 +00:00
parent c915ee2880
commit 629c469170

View File

@ -1572,6 +1572,7 @@ bool AArch64InstructionSelector::select(MachineInstr &I,
assert(SrcRB.getID() == AArch64::FPRRegBankID &&
DstRB.getID() == AArch64::FPRRegBankID &&
"Wrong extract regbank!");
(void)SrcRB;
// Emit the same code as a vector extract.
// Offset must be a multiple of 64.