diff options
author | Sean Callanan <scallanan@apple.com> | 2011-10-21 23:40:00 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-10-21 23:40:00 +0000 |
commit | 2e2b8b844c461a245fc67136a8cf8e78fc09cebb (patch) | |
tree | 7ae02b5b2a6dd5876c4a0cffdcc9f3f3713f3a44 /lldb/source/Expression/ClangExpressionParser.cpp | |
parent | c3afe1f8afbfd5527450f94fd34dc96ddf01ca7f (diff) | |
download | bcm5719-llvm-2e2b8b844c461a245fc67136a8cf8e78fc09cebb.tar.gz bcm5719-llvm-2e2b8b844c461a245fc67136a8cf8e78fc09cebb.zip |
Enabled dedicated debugger support in Clang, meaning
that Objective-C methods returning types incompatible
with "id" can be properly cast.
llvm-svn: 142702
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
-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 3156a3389a9..e49142687d4 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -231,7 +231,7 @@ ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope, 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; |