From 257fcd9b17119455a02f965b95200a286435e942 Mon Sep 17 00:00:00 2001 From: Michal Gorny Date: Thu, 14 Feb 2019 18:51:21 +0000 Subject: [PATCH] [lldb] [MainLoop] Remove redundant termination clause (NFCI) Remove the redundant termination clause from within the loop. Since the check is done at the end of the loop, it's entirely redundant to the 'while' condition. If termination was requested, the latter will become false and the 'while' loop will terminate, resulting in the 'return' statement below the loop being executed (which is equivalent to the one used inside 'if'). Differential Revision: https://reviews.llvm.org/D58227 llvm-svn: 354050 --- lldb/source/Host/common/MainLoop.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/lldb/source/Host/common/MainLoop.cpp b/lldb/source/Host/common/MainLoop.cpp index 8a40d427abe0..9bb5bfe61afe 100644 --- a/lldb/source/Host/common/MainLoop.cpp +++ b/lldb/source/Host/common/MainLoop.cpp @@ -382,9 +382,6 @@ Status MainLoop::Run() { return error; impl.ProcessEvents(); - - if (m_terminate_request) - return Status(); } return Status(); } -- GitLab