From bd45c9fec1a824eed51a2034590b9f0616e87f52 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Thu, 28 Mar 2019 20:52:22 +0000 Subject: [PATCH] [SelectionDAGBuilder] Fix 80 column violation. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357213 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index acd087a5083..4788a5cb351 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -8171,7 +8171,8 @@ void SelectionDAGBuilder::visitInlineAsm(ImmutableCallSite CS) { AsmNodeOperands[InlineAsm::Op_InputChain] = Chain; if (Flag.getNode()) AsmNodeOperands.push_back(Flag); - unsigned ISDOpc = isa(CS.getInstruction()) ? ISD::INLINEASM_BR : ISD::INLINEASM; + unsigned ISDOpc = isa(CS.getInstruction()) ? ISD::INLINEASM_BR + : ISD::INLINEASM; Chain = DAG.getNode(ISDOpc, getCurSDLoc(), DAG.getVTList(MVT::Other, MVT::Glue), AsmNodeOperands); Flag = Chain.getValue(1); -- 2.50.1