Skip to content

Commit e054677

Browse files
authored
Remove brackets
1 parent 0580746 commit e054677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4420,7 +4420,7 @@ MachineInstr *
44204420
AArch64InstructionSelector::emitCMP(MachineOperand &LHS, MachineOperand &RHS,
44214421
MachineIRBuilder &MIRBuilder) const {
44224422
MachineRegisterInfo &MRI = MIRBuilder.getMF().getRegInfo();
4423-
bool Is32Bit = (MRI.getType(LHS.getReg()).getSizeInBits() == 32);
4423+
bool Is32Bit = MRI.getType(LHS.getReg()).getSizeInBits() == 32;
44244424
auto RC = Is32Bit ? &AArch64::GPR32RegClass : &AArch64::GPR64RegClass;
44254425
return emitSUBS(MRI.createVirtualRegister(RC), LHS, RHS, MIRBuilder);
44264426
}

0 commit comments

Comments
 (0)