diff options
Diffstat (limited to 'clang/Sema/ASTStreamer.cpp')
| -rw-r--r-- | clang/Sema/ASTStreamer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/Sema/ASTStreamer.cpp b/clang/Sema/ASTStreamer.cpp index bd192040d7b..7db53f3ae6f 100644 --- a/clang/Sema/ASTStreamer.cpp +++ b/clang/Sema/ASTStreamer.cpp @@ -19,7 +19,7 @@ using namespace clang; /// Interface to the Builder.cpp file. /// -Action *CreateASTBuilderActions(bool FullLocInfo); +Action *CreateASTBuilderActions(Preprocessor &PP, bool FullLocInfo); namespace { @@ -27,7 +27,7 @@ namespace { Parser P; public: ASTStreamer(Preprocessor &PP, unsigned MainFileID, bool FullLocInfo) - : P(PP, *CreateASTBuilderActions(FullLocInfo)) { + : P(PP, *CreateASTBuilderActions(PP, FullLocInfo)) { PP.EnterSourceFile(MainFileID, 0, true); // Initialize the parser. |

