1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

make sure to flush the stream after dumping, to make sure it goes out immediately.

llvm-svn: 55288
This commit is contained in:
Chris Lattner 2008-08-24 18:28:30 +00:00
parent 6c99b53fda
commit 2147640791

View File

@ -4982,6 +4982,7 @@ std::string ISD::ArgFlagsTy::getArgFlagsString() {
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 {