[Lldb-commits] [lldb] r226617 - Add missing case statement to quiet a compiler warning.
Greg Clayton
gclayton at apple.com
Tue Jan 20 14:41:14 PST 2015
Author: gclayton
Date: Tue Jan 20 16:41:14 2015
New Revision: 226617
URL: http://llvm.org/viewvc/llvm-project?rev=226617&view=rev
Log:
Add missing case statement to quiet a compiler warning.
Modified:
lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
Modified: lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp?rev=226617&r1=226616&r2=226617&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp (original)
+++ lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp Tue Jan 20 16:41:14 2015
@@ -807,6 +807,9 @@ CMICmnLLDBDebuggerHandleEvents::HandlePr
case lldb::eStopReasonThreadExiting:
pEventType = "eStopReasonThreadExiting";
break;
+ case lldb::eStopReasonInstrumentation:
+ pEventType = "eStopReasonInstrumentation";
+ break;
}
// ToDo: Remove when finished coding application
More information about the lldb-commits
mailing list