Skip to content

Commit 55d76f6

Browse files
committed
Fixed clang-format.
1 parent 03b089b commit 55d76f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/AMDGPU/SIISelLowering.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15946,11 +15946,11 @@ SDValue SITargetLowering::performSelectCombine(SDNode *N,
1594615946
// Skip optimization for inlinable immediates.
1594715947
if (isFloatingPoint) {
1594815948
const APFloat &Val = cast<ConstantFPSDNode>(ConstVal)->getValueAPF();
15949-
if (!Val.isNormal() ||
15950-
Subtarget->getInstrInfo()->isInlineConstant(Val))
15949+
if (!Val.isNormal() || Subtarget->getInstrInfo()->isInlineConstant(Val))
1595115950
return SDValue();
1595215951
} else {
15953-
if (AMDGPU::isInlinableIntLiteral(cast<ConstantSDNode>(ConstVal)->getSExtValue()))
15952+
if (AMDGPU::isInlinableIntLiteral(
15953+
cast<ConstantSDNode>(ConstVal)->getSExtValue()))
1595415954
return SDValue();
1595515955
}
1595615956

0 commit comments

Comments
 (0)