commit | 6c2ecad2a59424d0aaeea21de48181d007f9ba37 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri Jul 23 16:37:47 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri Jul 23 16:37:47 2010 +0000 |
tree | 4ab555f69b267acd5e63534992d44b9d86a25e40 | |
parent | 1d096f031cc1bd9b565078b95084ce4117dde1fa [diff] [blame] |
Make SDNode::dump() print a newline at the end. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109234 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 9326a3f..1dce55f 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -5874,6 +5874,7 @@ 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 {