From 2e00e3b12dcadf2446b51280c83732f72c1de7cb Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 23 Jul 2010 16:37:47 +0000 Subject: Make SDNode::dump() print a newline at the end. llvm-svn: 109234 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib') diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 9326a3f9400..1dce55f5a9c 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5874,6 +5874,7 @@ std::string ISD::ArgFlagsTy::getArgFlagsString() { void SDNode::dump() const { dump(0); } void SDNode::dump(const SelectionDAG *G) const { print(dbgs(), G); + dbgs() << '\n'; } void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const { -- cgit v1.2.3