[llvm] [llvm-objdump][macho] Add support for ObjC relative method lists (PR #84250)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 13 16:17:01 PDT 2024
================
@@ -3673,6 +3683,12 @@ struct method_list32_t {
/* struct method32_t first; These structures follow inline */
};
+struct method_list_delta_t {
+ uint32_t entsize;
+ uint32_t count;
+ /* struct method_delta_t first; These structures follow inline */
+};
+
----------------
alx32 wrote:
Updated to passing `ml.entsize, ml.count`
https://github.com/llvm/llvm-project/pull/84250
More information about the llvm-commits
mailing list