diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-03-07 08:31:36 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-03-07 08:31:36 +0000 |
commit | 9f0bac5cd120693aae0c55824f19b557ca71d0ae (patch) | |
tree | 699d1b3363478649af504bb9bf9e103611c8d97a | |
parent | bb2f047346e73b434625348405ec3af301685bb7 (diff) | |
download | bcm5719-llvm-9f0bac5cd120693aae0c55824f19b557ca71d0ae.tar.gz bcm5719-llvm-9f0bac5cd120693aae0c55824f19b557ca71d0ae.zip |
Update for clang r203213
llvm-svn: 203217
-rw-r--r-- | lldb/source/Expression/ClangExpressionParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index 76f0f6f1067..ccff5b56338 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -337,7 +337,7 @@ ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope, m_compiler->createSourceManager(*m_file_manager.get()); m_compiler->createFileManager(); - m_compiler->createPreprocessor(); + m_compiler->createPreprocessor(TU_Complete); // 6. Most of this we get from the CompilerInstance, but we // also want to give the context an ExternalASTSource. |