From 5fb6ed4ae608c6f7ef589f1069b5dd5c7bdbd60b Mon Sep 17 00:00:00 2001 From: Jeff Cohen Date: Sat, 22 Jan 2005 17:36:17 +0000 Subject: Use binary mode for reading/writing bytecode files git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19751 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-ld/llvm-ld.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tools/llvm-ld') diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp index 07879acbc1..f8287f8e8d 100644 --- a/tools/llvm-ld/llvm-ld.cpp +++ b/tools/llvm-ld/llvm-ld.cpp @@ -186,7 +186,9 @@ static void RemoveEnv(const char * name, char ** const envp) { void GenerateBytecode(Module* M, const std::string& FileName) { // Create the output file. - std::ofstream Out(FileName.c_str()); + std::ios::openmode io_mode = std::ios::out | std::ios::trunc | + std::ios::binary; + std::ofstream Out(FileName.c_str(), io_mode); if (!Out.good()) { PrintAndReturn("error opening '" + FileName + "' for writing!"); return; -- cgit v1.2.3