diff options
| author | Enrico Granata <egranata@apple.com> | 2016-05-12 23:04:43 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2016-05-12 23:04:43 +0000 |
| commit | 7d1ff51f4a6b15be4b99a2d904b57bb1786efe68 (patch) | |
| tree | afe78a3f6c2a304d47c35b9320e9d840a283ac11 /lldb/source/Plugins | |
| parent | 1e20f021f3ca49770027763536e2f92a587146cb (diff) | |
| download | bcm5719-llvm-7d1ff51f4a6b15be4b99a2d904b57bb1786efe68.tar.gz bcm5719-llvm-7d1ff51f4a6b15be4b99a2d904b57bb1786efe68.zip | |
Add a check for version 15 of the shared cache format
<rdar://problem/26207478>
llvm-svn: 269378
Diffstat (limited to 'lldb/source/Plugins')
| -rw-r--r-- | lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp index 091c157142c..0f79427559b 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp @@ -241,7 +241,7 @@ __lldb_apple_objc_v2_get_shared_cache_class_info (void *objc_opt_ro_ptr, DEBUG_PRINTF ("objc_opt->headeropt_offset = %d\n", objc_opt->headeropt_offset); DEBUG_PRINTF ("objc_opt->clsopt_offset = %d\n", objc_opt->clsopt_offset); } - if (objc_opt->version == 12 || objc_opt->version == 13 || objc_opt->version == 14) + if (objc_opt->version == 12 || objc_opt->version == 13 || objc_opt->version == 14 || objc_opt->version == 15) { const objc_clsopt_t* clsopt = NULL; if (is_v14_format) |

