Skip to content

Commit 9ef73d6

Browse files
committed
[AArch64] Fix brackets warning in assert. NFC
1 parent a999ab4 commit 9ef73d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ bool AArch64ExpandPseudo::expandMultiVecPseudo(
11491149
bool AArch64ExpandPseudo::expandFormTuplePseudo(
11501150
MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
11511151
MachineBasicBlock::iterator &NextMBBI, unsigned Size) {
1152-
assert(Size == 2 || Size == 4 && "Invalid Tuple Size");
1152+
assert((Size == 2 || Size == 4) && "Invalid Tuple Size");
11531153
MachineInstr &MI = *MBBI;
11541154
Register ReturnTuple = MI.getOperand(0).getReg();
11551155

0 commit comments

Comments
 (0)