1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Workaround for bug in GCC 3.1.1 iostreams library on sparc. It apprarently

isn't flushing an ostream when it is deleted.

llvm-svn: 3834
This commit is contained in:
Chris Lattner 2002-09-19 20:49:25 +00:00
parent 2d1235521b
commit 31516613bd

View File

@ -28,7 +28,7 @@ public:
} }
bool run(Module &M) { bool run(Module &M) {
(*Out) << M; (*Out) << M << std::flush;
return false; return false;
} }