Skip to content

Commit 2caeb4a

Browse files
committed
fixup! clang-format
1 parent 712fd9f commit 2caeb4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2782,7 +2782,7 @@ void SelectionDAGISel::UpdateChains(
27822782
/// induce cycles in the DAG) and if so, creating a TokenFactor node. that will
27832783
/// be used as the input node chain for the generated nodes.
27842784
static SDValue
2785-
HandleMergeInputChains(SmallVectorImpl<SDNode*> &ChainNodesMatched,
2785+
HandleMergeInputChains(SmallVectorImpl<SDNode *> &ChainNodesMatched,
27862786
SDValue InputGlue, SelectionDAG *CurDAG) {
27872787

27882788
SmallPtrSet<const SDNode *, 16> Visited;
@@ -2831,7 +2831,7 @@ HandleMergeInputChains(SmallVectorImpl<SDNode*> &ChainNodesMatched,
28312831
// also be glued to the output, we cannot merge the chains. The TokenFactor
28322832
// would prevent the glue from being honored.
28332833
if (InputChains.size() != 1 &&
2834-
V->getValueType(V->getNumValues()-1) == MVT::Glue &&
2834+
V->getValueType(V->getNumValues() - 1) == MVT::Glue &&
28352835
InputGlue.getNode() == V.getNode())
28362836
return SDValue();
28372837
Worklist.push_back(V.getNode());

0 commit comments

Comments
 (0)