Skip to content

Commit 1fdaea5

Browse files
committed
Remove unnecessary braces
1 parent 64ea6eb commit 1fdaea5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -728,10 +728,9 @@ static bool buildVectorSupportsSourceMods(const SDNode *N) {
728728

729729
assert(!N->use_empty());
730730

731-
for (const SDNode *U : N->users()) {
731+
for (const SDNode *U : N->users())
732732
if (U->getOpcode() != ISD::BITCAST)
733733
return true;
734-
}
735734

736735
SDValue LHS = N->getOperand(0);
737736
SDValue RHS = N->getOperand(1);

0 commit comments

Comments
 (0)