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/Interpreter/Args.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/Interpreter/Args.cpp')
-rw-r--r-- | lldb/source/Interpreter/Args.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/Args.cpp b/lldb/source/Interpreter/Args.cpp index 6dfcaaa1350..5700b82f324 100644 --- a/lldb/source/Interpreter/Args.cpp +++ b/lldb/source/Interpreter/Args.cpp @@ -823,7 +823,7 @@ Args::StringToAddress (const ExecutionContext *exe_ctx, const char *s, lldb::add options); bool success = false; - if (expr_result == eExecutionCompleted) + if (expr_result == eExpressionCompleted) { // Get the address to watch. addr = valobj_sp->GetValueAsUnsigned(fail_value, &success); |