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 | f871ccb853a2ccbe8675c912330c041b318be8cd (patch) | |
tree | e73e6ef06693e1ba12f7d53d8648606602c5b10e /lib/CodeGen/PseudoSourceValue.cpp | |
parent | f49f0cdb48a9e6525b44f8f4b210558df106ff4e (diff) |
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/PseudoSourceValue.cpp')
-rw-r--r-- | lib/CodeGen/PseudoSourceValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/PseudoSourceValue.cpp b/lib/CodeGen/PseudoSourceValue.cpp index d0ea7069d4..b4c20e6bfd 100644 --- a/lib/CodeGen/PseudoSourceValue.cpp +++ b/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 { |