Skip to content

Commit 172f5c3

Browse files
committed
remove braces
1 parent d7f5dd9 commit 172f5c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13949,8 +13949,8 @@ SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
1394913949
// If the trunc wasn't legal, try to fold to (sext_inreg (anyext x))
1395013950
if ((!LegalTypes || TLI.isTypeLegal(VT))) {
1395113951
SDValue ExtSrc = DAG.getAnyExtOrTrunc(N00, DL, VT);
13952-
return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
13953-
{ExtSrc, N0->getOperand(1)});
13952+
return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, ExtSrc,
13953+
N0->getOperand(1));
1395413954
}
1395513955
}
1395613956
}

0 commit comments

Comments
 (0)