diff --git a/src/plugins/debugger/lldb/guest/lldbengineguest.cpp b/src/plugins/debugger/lldb/guest/lldbengineguest.cpp
index e853de9abcfba00d1559456136d536786999b811..8f2cca503b0e3dab4185952792f0cd63dd5d426c 100644
--- a/src/plugins/debugger/lldb/guest/lldbengineguest.cpp
+++ b/src/plugins/debugger/lldb/guest/lldbengineguest.cpp
@@ -235,8 +235,6 @@ void LldbEngineGuest::executeStepOut()
     if (!m_currentThread.IsValid())
         return;
     m_currentThread.StepOut();
-    notifyInferiorRunRequested();
-    notifyInferiorRunOk();
 }
 
 void LldbEngineGuest::executeNext()
@@ -246,8 +244,6 @@ void LldbEngineGuest::executeNext()
     if (!m_currentThread.IsValid())
         return;
     m_currentThread.StepOver();
-    notifyInferiorRunRequested();
-    notifyInferiorRunOk();
 }
 
 void LldbEngineGuest::executeStepI()
@@ -266,8 +262,6 @@ void LldbEngineGuest::executeNextI()
     if (!m_currentThread.IsValid())
         return;
     m_currentThread.StepInstruction(true);
-    notifyInferiorRunRequested();
-    notifyInferiorRunOk();
 }
 
 void LldbEngineGuest::continueInferior()