diff options
Diffstat (limited to 'clang/lib/Frontend/FrontendAction.cpp')
-rw-r--r-- | clang/lib/Frontend/FrontendAction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/FrontendAction.cpp b/clang/lib/Frontend/FrontendAction.cpp index bd084aa..1c4dec0 100644 --- a/clang/lib/Frontend/FrontendAction.cpp +++ b/clang/lib/Frontend/FrontendAction.cpp @@ -312,7 +312,7 @@ FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, std::error_code ErrorCode; auto FileStream = std::make_unique<llvm::raw_fd_ostream>( DumpDeserializedDeclarationRangesPath, ErrorCode, - llvm::sys::fs::OF_None); + llvm::sys::fs::OF_TextWithCRLF); if (!ErrorCode) { Consumers.push_back(std::make_unique<DeserializedDeclsSourceRangePrinter>( CI.getSourceManager(), std::move(FileStream))); |