aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-23 15:57:19 +0000
committerDan Gohman <gohman@apple.com>2009-03-23 15:57:19 +0000
commitf871ccb853a2ccbe8675c912330c041b318be8cd (patch)
treee73e6ef06693e1ba12f7d53d8648606602c5b10e /lib/CodeGen/SelectionDAG
parentf49f0cdb48a9e6525b44f8f4b210558df106ff4e (diff)
downloadexternal_llvm-f871ccb853a2ccbe8675c912330c041b318be8cd.zip
external_llvm-f871ccb853a2ccbe8675c912330c041b318be8cd.tar.gz
external_llvm-f871ccb853a2ccbe8675c912330c041b318be8cd.tar.bz2
Now that errs() is properly non-buffered, there's no need to
explicitly flush it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index b85a04d..448d760 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -5308,7 +5308,6 @@ 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_types(raw_ostream &OS, const SelectionDAG *G) const {
@@ -5544,7 +5543,6 @@ static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
void SDNode::dumpr() const {
VisitedSDNodeSet once;
DumpNodesr(errs(), this, 0, 0, once);
- errs().flush();
}
const Type *ConstantPoolSDNode::getType() const {