[Lldb-commits] [PATCH] D26260: Fix typo which broke debugging on older OSX systems after r285172.

Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 2 14:07:09 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL285858: Fix typo which broke debugging on older OSX systems after r285172. (authored by dperchik).

Changed prior to commit:
  https://reviews.llvm.org/D26260?vs=76780&id=76784#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D26260

Files:
  lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp


Index: lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
===================================================================
--- lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
+++ lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
@@ -1137,7 +1137,7 @@
 
     // macOS 10.12 and newer
     if (os_type == llvm::Triple::MacOSX &&
-        (major >= 10 || (major == 10 && minor >= 12))) {
+        (major > 10 || (major == 10 && minor >= 12))) {
       use_new_spi_interface = true;
     }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D26260.76784.patch
Type: text/x-patch
Size: 570 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20161102/f4e55041/attachment.bin>


More information about the lldb-commits mailing list