diff options
author | Jim Ingham <jingham@apple.com> | 2014-05-05 02:47:44 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-05-05 02:47:44 +0000 |
commit | 8646d3c1647fdaa4b27ff7369f8a912c24b30666 (patch) | |
tree | 41a334cb6d26de36102f2c9353eafac53d1198f7 /lldb/source/Commands/CommandObjectThread.cpp | |
parent | 1624a2d3c8a9558840b5e17623d232c0aa3c01cd (diff) | |
download | bcm5719-llvm-8646d3c1647fdaa4b27ff7369f8a912c24b30666.tar.gz bcm5719-llvm-8646d3c1647fdaa4b27ff7369f8a912c24b30666.zip |
Rename eExecution*** to eExpression*** to be consistent with the result type.
llvm-svn: 207945
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 192db5a8725..ebf42b15782 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -1503,12 +1503,12 @@ protected: options.SetUnwindOnError(true); options.SetUseDynamic(eNoDynamicValues); - ExpressionResults exe_results = eExecutionSetupError; + ExpressionResults exe_results = eExpressionSetupError; exe_results = target->EvaluateExpression (command, frame_sp.get(), return_valobj_sp, options); - if (exe_results != eExecutionCompleted) + if (exe_results != eExpressionCompleted) { if (return_valobj_sp) result.AppendErrorWithFormat("Error evaluating result expression: %s", return_valobj_sp->GetError().AsCString()); |