diff options
author | Dan Gohman <gohman@apple.com> | 2010-07-23 16:37:47 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-07-23 16:37:47 +0000 |
commit | 2e00e3b12dcadf2446b51280c83732f72c1de7cb (patch) | |
tree | cdd0bf6bd0a491d5b918bf1cba16a7214dfe852a /llvm/lib/CodeGen | |
parent | 5cc2c8b9c307edd156cc4622490a2f9447d90702 (diff) | |
download | bcm5719-llvm-2e00e3b12dcadf2446b51280c83732f72c1de7cb.tar.gz bcm5719-llvm-2e00e3b12dcadf2446b51280c83732f72c1de7cb.zip |
Make SDNode::dump() print a newline at the end.
llvm-svn: 109234
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 { |