[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 13:26:36 PDT 2024
================
@@ -3519,6 +3519,12 @@ static const char *get_pointer_64(uint64_t Address, uint32_t &offset,
return nullptr;
}
+static const char *get_value_32(uint32_t Address, uint32_t &offset,
+ uint32_t &left, SectionRef &S,
+ DisassembleInfo *info, bool objc_only = false) {
+ return get_pointer_64(Address, offset, left, S, info, objc_only);
+}
+
----------------
alx32 wrote:
Indeed, I got confused, will fix.
https://github.com/llvm/llvm-project/pull/84250
More information about the llvm-commits
mailing list