summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2013-11-08 23:38:26 +0000
committerGreg Clayton <gclayton@apple.com>2013-11-08 23:38:26 +0000
commitc28ce7828b7709151f79017308c4960b66a9f4a0 (patch)
treecdb34061d97d1822e4b4fc30f10a5c8279a880c3 /lldb/source
parent0e93cdb0d02e7e078ef9187f688626673f02515d (diff)
downloadbcm5719-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.cpp3
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;
}
}
}
OpenPOWER on IntegriCloud