mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-22 23:42:33 +00:00
Merge branch 'master' into bill/bedrock
This commit is contained in:
@@ -1484,9 +1484,16 @@ gb_internal void check_proc_decl(CheckerContext *ctx, Entity *e, DeclInfo *d) {
|
||||
e->Procedure.no_sanitize_memory = ac.no_sanitize_memory;
|
||||
e->Procedure.no_sanitize_thread = ac.no_sanitize_thread;
|
||||
|
||||
e->Procedure.fast_math_flags = ac.fast_math_flags;
|
||||
|
||||
e->deprecated_message = ac.deprecated_message;
|
||||
e->warning_message = ac.warning_message;
|
||||
ac.link_name = handle_link_name(ctx, e->token, ac.link_name, ac.link_prefix, ac.link_suffix);
|
||||
|
||||
if (ac.link_section.len > 0) {
|
||||
e->Procedure.link_section = ac.link_section;
|
||||
}
|
||||
|
||||
if (ac.has_disabled_proc) {
|
||||
if (ac.disabled_proc) {
|
||||
e->flags |= EntityFlag_Disabled;
|
||||
|
||||
Reference in New Issue
Block a user