diff options
author | Greg Clayton <gclayton@apple.com> | 2013-11-08 23:38:26 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-11-08 23:38:26 +0000 |
commit | c28ce7828b7709151f79017308c4960b66a9f4a0 (patch) | |
tree | cdb34061d97d1822e4b4fc30f10a5c8279a880c3 /lldb/source | |
parent | 0e93cdb0d02e7e078ef9187f688626673f02515d (diff) | |
download | bcm5719-llvm-c28ce7828b7709151f79017308c4960b66a9f4a0.tar.gz bcm5719-llvm-c28ce7828b7709151f79017308c4960b66a9f4a0.zip |
Fixed a build warning for a missing switch case.
llvm-svn: 194295
Diffstat (limited to 'lldb/source')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 9757a08b1a2..a7c892d255e 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -1498,6 +1498,9 @@ CommandInterpreter::PreprocessCommand (std::string &command) case eExecutionTimedOut: error.SetErrorStringWithFormat("expression timed out for the expression '%s'", expr_str.c_str()); break; + case eExecutionStoppedForDebug: + error.SetErrorStringWithFormat("expression stop at entry point for debugging for the expression '%s'", expr_str.c_str()); + break; } } } |