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 9ae5cf5ca3
commit 67b9d7f7a9
1 changed files with 1 additions and 1 deletions

View File

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