diff options
| author | A1029384756 <hayden.gray104@gmail.com> | 2025-10-07 23:29:10 -0400 |
|---|---|---|
| committer | A1029384756 <hayden.gray104@gmail.com> | 2025-10-07 23:29:10 -0400 |
| commit | 067fbfb48c2673ba4cf9c4b163fc99082d195147 (patch) | |
| tree | 94e6d181e27100d08a4411aa6899c6eabe559355 /src/entity.cpp | |
| parent | cfe651e8d23cb85097db32662acefd27b4350be9 (diff) | |
| parent | 5320feb6737c4d89ce54fda463ea8ff8b8200dba (diff) | |
Merge remote-tracking branch 'upstream/master' into llvm-14-fixes
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index d6d8f58de..2b21fdcac 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -251,6 +251,8 @@ struct Entity { String link_name; String link_prefix; String link_suffix; + String objc_selector_name; + Entity *objc_class; DeferredProcedure deferred_procedure; struct GenProcsData *gen_procs; @@ -266,6 +268,8 @@ struct Entity { bool is_anonymous : 1; bool no_sanitize_address : 1; bool no_sanitize_memory : 1; + bool is_objc_impl_or_import : 1; + bool is_objc_class_method : 1; } Procedure; struct { Array<Entity *> entities; |