summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/ClangExpressionParser.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2010-11-04 01:51:38 +0000
committerSean Callanan <scallanan@apple.com>2010-11-04 01:51:38 +0000
commit10af7c430a426ab649ac000152bc51c3601eb395 (patch)
treef1b9df6c5f74117250ad3d64a198bc7ab44faa69 /lldb/source/Expression/ClangExpressionParser.cpp
parent7108dad1308e3b7718bf048980f9944e4e3d1a58 (diff)
downloadbcm5719-llvm-10af7c430a426ab649ac000152bc51c3601eb395.tar.gz
bcm5719-llvm-10af7c430a426ab649ac000152bc51c3601eb395.zip
Re-enabled LLDB's pointer checkers, and moved the
implementation of the Objective-C object checkers into the Objective-C language runtime. llvm-svn: 118226
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
-rw-r--r--lldb/source/Expression/ClangExpressionParser.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp
index 97d54a89e0f..016a637fdee 100644
--- a/lldb/source/Expression/ClangExpressionParser.cpp
+++ b/lldb/source/Expression/ClangExpressionParser.cpp
@@ -454,8 +454,6 @@ ClangExpressionParser::MakeJIT (lldb::addr_t &func_addr,
if (m_expr.NeedsValidation() && exe_ctx.process->GetDynamicCheckers())
{
- /*
- Disabled temporarily - TODO Centralize and re-enable this inside Process to avoid race conditions
IRDynamicChecks ir_dynamic_checks(*exe_ctx.process->GetDynamicCheckers(), function_name.c_str());
if (!ir_dynamic_checks.runOnModule(*module))
@@ -464,7 +462,6 @@ ClangExpressionParser::MakeJIT (lldb::addr_t &func_addr,
err.SetErrorString("Couldn't add dynamic checks to the expression");
return err;
}
- */
}
}
OpenPOWER on IntegriCloud