From 3cc9d630318325d33c349c6617f36a5d814adabb Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 6 Jul 2014 17:50:36 +0000 Subject: [PATCH] Update lldb code to match the change in clang r212386 llvm-svn: 212410 --- lldb/source/Expression/ClangExpressionParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index 0b6d952b76b2..28875b8469ea 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -239,7 +239,7 @@ ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope, // // FIXME: We shouldn't need to do this, the target should be immutable once // created. This complexity should be lifted elsewhere. - m_compiler->getTarget().setForcedLangOptions(m_compiler->getLangOpts()); + m_compiler->getTarget().adjust(m_compiler->getLangOpts()); // 4. Set up the diagnostic buffer for reporting errors