forked from OSchip/llvm-project
make sure to flush the stream after dumping, to make sure it goes out immediately.
llvm-svn: 55288
This commit is contained in:
parent
88e89a5a5d
commit
f4bd5cf3dd
|
@ -4982,6 +4982,7 @@ std::string ISD::ArgFlagsTy::getArgFlagsString() {
|
||||||
void SDNode::dump() const { dump(0); }
|
void SDNode::dump() const { dump(0); }
|
||||||
void SDNode::dump(const SelectionDAG *G) const {
|
void SDNode::dump(const SelectionDAG *G) const {
|
||||||
print(errs(), G);
|
print(errs(), G);
|
||||||
|
errs().flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
|
void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
|
||||||
|
|
Loading…
Reference in New Issue