Replace an accidentally added "break" with an LLVM_FALLTHROUGH.
authorAdrian Prantl <aprantl@apple.com>
Tue, 19 Dec 2017 23:16:38 +0000 (23:16 +0000)
committerAdrian Prantl <aprantl@apple.com>
Tue, 19 Dec 2017 23:16:38 +0000 (23:16 +0000)
Thanks to Greg Clayton for catchting this!

llvm-svn: 321123

lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp

index 99d6eb6..dceb29f 100644 (file)
@@ -900,7 +900,7 @@ bool CMICmnLLDBDebuggerHandleEvents::HandleProcessEventBroadcastBitStateChanged(
     bOk = HandleProcessEventStateStopped(vEvent, bShouldBrk);
     if (bShouldBrk)
       break;
-    break;
+    LLVM_FALLTHROUGH;
   case lldb::eStateCrashed:
   case lldb::eStateSuspended:
     pEventType = "eStateSuspended";