commit | b787620a3a34e277e1343651ff4d1bb95e3f93e0 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Aug 24 18:28:30 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Aug 24 18:28:30 2008 +0000 |
tree | 7b7efb93b47614c2c45e724131f9039076a0ea60 | |
parent | 4fce6e2d894004a5a47a14c14b5c219d75bc8a7f [diff] [blame] |
make sure to flush the stream after dumping, to make sure it goes out immediately. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55288 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index fa73e73..3d62035 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -4982,6 +4982,7 @@ void SDNode::dump() const { dump(0); } void SDNode::dump(const SelectionDAG *G) const { print(errs(), G); + errs().flush(); } void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {