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

isn't flushing an ostream when it is deleted.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3834 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-09-19 20:49:25 +00:00
parent b4ee4f935e
commit fd479b6fd4

View File

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