Index: lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp =================================================================== --- lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -598,11 +598,10 @@ if (Op.getNode()->hasOneUse()) DumpNodes(Op.getNode(), indent+2, G); else - dbgs() << "\n" << std::string(indent+2, ' ') - << PrintNodeId(*Op.getNode()) << ": "; + dbgs() << std::string(indent+2, ' ') + << PrintNodeId(*Op.getNode()) << ": \n"; } - dbgs() << '\n'; dbgs().indent(indent); N->dump(G); }