diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-23 15:57:19 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-23 15:57:19 +0000 |
commit | 4f2fea1a21f73934c3060e744cd1a5bb94c79be3 (patch) | |
tree | efd940ae58b3dcb0ddf09793ae1c3eb625ec8660 /llvm/lib/CodeGen/PseudoSourceValue.cpp | |
parent | 7135a9d16600ee00486d2a424e17e0fac7991202 (diff) | |
download | bcm5719-llvm-4f2fea1a21f73934c3060e744cd1a5bb94c79be3.tar.gz bcm5719-llvm-4f2fea1a21f73934c3060e744cd1a5bb94c79be3.zip |
Now that errs() is properly non-buffered, there's no need to
explicitly flush it.
llvm-svn: 67526
Diffstat (limited to 'llvm/lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PseudoSourceValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp index d0ea7069d4b..b4c20e6bfd3 100644 --- a/llvm/lib/CodeGen/PseudoSourceValue.cpp +++ b/llvm/lib/CodeGen/PseudoSourceValue.cpp @@ -42,7 +42,7 @@ PseudoSourceValue::PseudoSourceValue() : Value(PointerType::getUnqual(Type::Int8Ty), PseudoSourceValueVal) {} void PseudoSourceValue::dump() const { - print(errs()); errs() << '\n'; errs().flush(); + print(errs()); errs() << '\n'; } void PseudoSourceValue::print(raw_ostream &OS) const { |