[Lldb-commits] [lldb] r194295 - Fixed a build warning for a missing switch case.
Greg Clayton
gclayton at apple.com
Fri Nov 8 15:38:26 PST 2013
Author: gclayton
Date: Fri Nov 8 17:38:26 2013
New Revision: 194295
URL: http://llvm.org/viewvc/llvm-project?rev=194295&view=rev
Log:
Fixed a build warning for a missing switch case.
Modified:
lldb/trunk/source/Interpreter/CommandInterpreter.cpp
Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=194295&r1=194294&r2=194295&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Fri Nov 8 17:38:26 2013
@@ -1498,6 +1498,9 @@ CommandInterpreter::PreprocessCommand (s
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;
}
}
}
More information about the lldb-commits
mailing list