From c28ce7828b7709151f79017308c4960b66a9f4a0 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Fri, 8 Nov 2013 23:38:26 +0000 Subject: Fixed a build warning for a missing switch case. llvm-svn: 194295 --- lldb/source/Interpreter/CommandInterpreter.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lldb/source/Interpreter') 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; } } } -- cgit v1.2.3