[Lldb-commits] [lldb] r142702 - /lldb/trunk/source/Expression/ClangExpressionParser.cpp

Sean Callanan scallanan at apple.com
Fri Oct 21 16:40:00 PDT 2011


Author: spyffe
Date: Fri Oct 21 18:40:00 2011
New Revision: 142702

URL: http://llvm.org/viewvc/llvm-project?rev=142702&view=rev
Log:
Enabled dedicated debugger support in Clang, meaning
that Objective-C methods returning types incompatible
with "id" can be properly cast.

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=142702&r1=142701&r2=142702&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ClangExpressionParser.cpp (original)
+++ lldb/trunk/source/Expression/ClangExpressionParser.cpp Fri Oct 21 18:40:00 2011
@@ -231,7 +231,7 @@
     m_compiler->getLangOpts().ThreadsafeStatics = false;
     m_compiler->getLangOpts().AccessControl = false; // Debuggers get universal access
     m_compiler->getLangOpts().DollarIdents = true; // $ indicates a persistent variable name
-    //m_compiler->getLangOpts().DebuggerSupport = true; // Features specifically for debugger clients
+    m_compiler->getLangOpts().DebuggerSupport = true; // Features specifically for debugger clients
     
     // Set CodeGen options
     m_compiler->getCodeGenOpts().EmitDeclMetadata = true;





More information about the lldb-commits mailing list