mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Make #no_capture map to nocapture
This commit is contained in:
@@ -253,6 +253,9 @@ gb_internal lbProcedure *lb_create_procedure(lbModule *m, Entity *entity, bool i
|
|||||||
if (e->flags&EntityFlag_NoAlias) {
|
if (e->flags&EntityFlag_NoAlias) {
|
||||||
lb_add_proc_attribute_at_index(p, offset+parameter_index, "noalias");
|
lb_add_proc_attribute_at_index(p, offset+parameter_index, "noalias");
|
||||||
}
|
}
|
||||||
|
if (e->flags&EntityFlag_NoCapture) {
|
||||||
|
lb_add_proc_attribute_at_index(p, offset+parameter_index, "nocapture");
|
||||||
|
}
|
||||||
parameter_index += 1;
|
parameter_index += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user