diff options
author | Steve Naroff <snaroff@apple.com> | 2010-01-05 17:33:23 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2010-01-05 17:33:23 +0000 |
commit | 3d38a68b06c16b5b0ed00f8f834d0e6e8b8dbdbd (patch) | |
tree | aef523dc9e7c75f0c4e815a1a1b00fb49f994f08 /clang/lib/Frontend/FrontendActions.cpp | |
parent | d146e2e3df750442cf247dce094c08a14c7a7643 (diff) | |
download | bcm5719-llvm-3d38a68b06c16b5b0ed00f8f834d0e6e8b8dbdbd.tar.gz bcm5719-llvm-3d38a68b06c16b5b0ed00f8f834d0e6e8b8dbdbd.zip |
Fix <rdar://problem/7490212> clang rewriter: return of the mixed line endings, which is
related to <rdar://problem/6596843> clang ObjC rewriter: Line endings still mixed in rewrite output
This fix was dropped when I integrated the 'objective-rewrite' branch.
llvm-svn: 92737
Diffstat (limited to 'clang/lib/Frontend/FrontendActions.cpp')
-rw-r--r-- | clang/lib/Frontend/FrontendActions.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/Frontend/FrontendActions.cpp b/clang/lib/Frontend/FrontendActions.cpp index 4c647fda2b6..0baba3f4673 100644 --- a/clang/lib/Frontend/FrontendActions.cpp +++ b/clang/lib/Frontend/FrontendActions.cpp @@ -280,7 +280,9 @@ void PrintParseAction::ExecuteAction() { void PrintPreprocessedAction::ExecuteAction() { CompilerInstance &CI = getCompilerInstance(); - llvm::raw_ostream *OS = CI.createDefaultOutputFile(false, getCurrentFile()); + // Output file needs to be set to 'Binary', to avoid converting Unix style + // line feeds (<LF>) to Microsoft style line feeds (<CR><LF>). + llvm::raw_ostream *OS = CI.createDefaultOutputFile(true, getCurrentFile()); if (!OS) return; DoPrintPreprocessedInput(CI.getPreprocessor(), OS, |