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/Target/Target.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/Target/Target.cpp')
| -rw-r--r-- | lldb/source/Target/Target.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp index 7b3646e9af9..35b41121c12 100644 --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -1866,7 +1866,7 @@ Target::EvaluateExpression { result_valobj_sp.reset(); - ExpressionResults execution_results = eExecutionSetupError; + ExpressionResults execution_results = eExpressionSetupError; if (expr_cstr == NULL || expr_cstr[0] == '\0') return execution_results; @@ -1901,7 +1901,7 @@ Target::EvaluateExpression if (persistent_var_sp) { result_valobj_sp = persistent_var_sp->GetValueObject (); - execution_results = eExecutionCompleted; + execution_results = eExpressionCompleted; } else { |

