[Lldb-commits] [lldb] r212410 - Update lldb code to match the change in clang r212386

Sylvestre Ledru sylvestre at debian.org
Sun Jul 6 10:50:36 PDT 2014


Author: sylvestre
Date: Sun Jul  6 12:50:36 2014
New Revision: 212410

URL: http://llvm.org/viewvc/llvm-project?rev=212410&view=rev
Log:
Update lldb  code to match the change in clang r212386

Modified:
    lldb/trunk/source/Expression/ClangExpressionParser.cpp

Modified: lldb/trunk/source/Expression/ClangExpressionParser.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/ClangExpressionParser.cpp?rev=212410&r1=212409&r2=212410&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ClangExpressionParser.cpp (original)
+++ lldb/trunk/source/Expression/ClangExpressionParser.cpp Sun Jul  6 12:50:36 2014
@@ -239,7 +239,7 @@ ClangExpressionParser::ClangExpressionPa
     //
     // 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
     





More information about the lldb-commits mailing list