commit | f871ccb853a2ccbe8675c912330c041b318be8cd | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Mon Mar 23 15:57:19 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Mon Mar 23 15:57:19 2009 +0000 |
tree | e73e6ef06693e1ba12f7d53d8648606602c5b10e | |
parent | f49f0cdb48a9e6525b44f8f4b210558df106ff4e [diff] [blame] |
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
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index e19cf7a..bd7105f 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/lib/CodeGen/MachineFunction.cpp
@@ -558,4 +558,4 @@ } } -void MachineConstantPool::dump() const { print(errs()); errs().flush(); } +void MachineConstantPool::dump() const { print(errs()); }