[PATCH] D58227: [lldb] [MainLoop] Remove redundant termination clause (NFCI)
    Michał Górny via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Thu Feb 14 10:51:50 PST 2019
    
    
  
This revision was automatically updated to reflect the committed changes.
Closed by commit rL354050: [lldb] [MainLoop] Remove redundant termination clause (NFCI) (authored by mgorny, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Changed prior to commit:
  https://reviews.llvm.org/D58227?vs=186806&id=186875#toc
Repository:
  rL LLVM
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D58227/new/
https://reviews.llvm.org/D58227
Files:
  lldb/trunk/source/Host/common/MainLoop.cpp
Index: lldb/trunk/source/Host/common/MainLoop.cpp
===================================================================
--- lldb/trunk/source/Host/common/MainLoop.cpp
+++ lldb/trunk/source/Host/common/MainLoop.cpp
@@ -382,9 +382,6 @@
       return error;
 
     impl.ProcessEvents();
-
-    if (m_terminate_request)
-      return Status();
   }
   return Status();
 }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58227.186875.patch
Type: text/x-patch
Size: 366 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190214/a340096a/attachment.bin>
    
    
More information about the llvm-commits
mailing list