We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 710b5a1 commit 41fd143Copy full SHA for 41fd143
llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp
@@ -2653,7 +2653,7 @@ bool AArch64InstructionSelector::select(MachineInstr &I) {
2653
}
2654
2655
2656
- assert(DefSize == 32 || DefSize == 64 && "Unexpected const def size");
+ assert((DefSize == 32 || DefSize == 64) && "Unexpected const def size");
2657
// Either emit a FMOV, or emit a copy to emit a normal mov.
2658
const Register DefGPRReg = MRI.createVirtualRegister(
2659
DefSize == 32 ? &AArch64::GPR32RegClass : &AArch64::GPR64RegClass);
0 commit comments