]> granicus.if.org Git - clang/commitdiff
Open AST/PCH files in binary mode.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sun, 15 Aug 2010 16:54:31 +0000 (16:54 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sun, 15 Aug 2010 16:54:31 +0000 (16:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111106 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Frontend/ASTUnit.cpp

index 8d49d4e786317baeb0fa9484328e3beec48efa35..8ac5b681a6f6ac91ddbfff21ce191c813b9548e4 100644 (file)
@@ -1598,7 +1598,8 @@ bool ASTUnit::Save(llvm::StringRef File) {
   // FIXME: Can we somehow regenerate the stat cache here, or do we need to 
   // unconditionally create a stat cache when we parse the file?
   std::string ErrorInfo;
-  llvm::raw_fd_ostream Out(File.str().c_str(), ErrorInfo);
+  llvm::raw_fd_ostream Out(File.str().c_str(), ErrorInfo,
+                           llvm::raw_fd_ostream::F_Binary);
   if (!ErrorInfo.empty() || Out.has_error())
     return true;
   
@@ -1609,7 +1610,6 @@ bool ASTUnit::Save(llvm::StringRef File) {
   
   // Write the generated bitstream to "Out".
   Out.write((char *)&Buffer.front(), Buffer.size());  
-  Out.flush();
   Out.close();
   return Out.has_error();
 }