Skip to content

Commit

Permalink
[LLDB] Fix objc_clsopt_v16_t struct
Browse files Browse the repository at this point in the history
The objc_clsopt_v16_t struct does not match up with the macOS/iOS15
dyld_shared_cache ObjC runtime structures. A struct field was seemingly
omitted.

Differential revision: https://reviews.llvm.org/D110477
  • Loading branch information
AtariDreams authored and JDevlieghere committed Oct 4, 2021
1 parent f309183 commit 3fe771b
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -292,6 +292,7 @@ struct objc_clsopt_v16_t {
uint32_t occupied;
uint32_t shift;
uint32_t mask;
uint32_t zero;
uint64_t salt;
uint32_t scramble[256];
uint8_t tab[0]; // tab[mask+1]
Expand Down

0 comments on commit 3fe771b

Please sign in to comment.