diff options
| author | Franz Höltermann <Francis_the_cat@gmx.de> | 2024-06-11 09:37:20 +0200 |
|---|---|---|
| committer | Franz Höltermann <Francis_the_cat@gmx.de> | 2024-06-11 09:37:20 +0200 |
| commit | c6c00c706aab0a08a4b8d09df2b7e01835ee777f (patch) | |
| tree | c569b61373e907d7eccb90f3650a3eadd2d6e607 /src/entity.cpp | |
| parent | 6454c6f0879add3ed018065eff073a75d45229b0 (diff) | |
| parent | f1779c85dedb8bb309a9afa8cfa7e35ad727d237 (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index 1461b96d7..7f484e308 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -223,12 +223,14 @@ struct Entity { Ast * foreign_library_ident; String link_name; String link_prefix; + String link_suffix; String link_section; CommentGroup *docs; CommentGroup *comment; bool is_foreign; bool is_export; bool is_global; + bool is_rodata; } Variable; struct { Type * type_parameter_specialization; @@ -243,6 +245,7 @@ struct Entity { Ast * foreign_library_ident; String link_name; String link_prefix; + String link_suffix; DeferredProcedure deferred_procedure; struct GenProcsData *gen_procs; |