Applying Anton's binmode fix to the other ofstream too.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44535 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gordon Henriksen 2007-12-03 14:50:37 +00:00
parent 3194012664
commit 94007ec7da

View File

@ -17,7 +17,7 @@ using namespace llvm;
/*===-- Operations on modules ---------------------------------------------===*/
int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) {
std::ofstream OS(Path);
std::ofstream OS(Path, std::ios_base::out|std::ios::trunc|std::ios::binary);
if (!OS.fail())
WriteBitcodeToFile(unwrap(M), OS);