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

Dawn Perchik via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 2 14:02:37 PDT 2016


dawn created this revision.
dawn added a reviewer: jasonmolenda.
dawn added a subscriber: lldb-commits.
dawn set the repository for this revision to rL LLVM.

Clearly ">=" was meant to be ">".  :)


Repository:
  rL LLVM

https://reviews.llvm.org/D26260

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


Index: source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
===================================================================
--- source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
+++ 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.76780.patch
Type: text/x-patch
Size: 537 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20161102/0857932e/attachment.bin>


More information about the lldb-commits mailing list