diff options
author | Jim Ingham <jingham@apple.com> | 2014-05-05 02:26:40 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-05-05 02:26:40 +0000 |
commit | 1624a2d3c8a9558840b5e17623d232c0aa3c01cd (patch) | |
tree | d11f0105a8cca2f3a4c887fbe278b570281ab367 /lldb/source/Commands | |
parent | e8a7afef86220229a872b78b5e3dd212574d741a (diff) | |
download | bcm5719-llvm-1624a2d3c8a9558840b5e17623d232c0aa3c01cd.tar.gz bcm5719-llvm-1624a2d3c8a9558840b5e17623d232c0aa3c01cd.zip |
Make the Expression Execution result enum available to the SB API layer.
Add a callback that will allow an expression to be cancelled between the
expression evaluation stages (for the ClangUserExpressions.)
<rdar://problem/16790467>, <rdar://problem/16573440>
llvm-svn: 207944
Diffstat (limited to 'lldb/source/Commands')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpoint.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 22ee5d85573..192db5a8725 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -1503,7 +1503,7 @@ protected: options.SetUnwindOnError(true); options.SetUseDynamic(eNoDynamicValues); - ExecutionResults exe_results = eExecutionSetupError; + ExpressionResults exe_results = eExecutionSetupError; exe_results = target->EvaluateExpression (command, frame_sp.get(), return_valobj_sp, diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index dddc2c11f7e..f420f1801fc 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -1256,7 +1256,7 @@ protected: options.SetTryAllThreads(true); options.SetTimeoutUsec(0); - ExecutionResults expr_result = target->EvaluateExpression (expr, + ExpressionResults expr_result = target->EvaluateExpression (expr, frame, valobj_sp, options); |