aboutsummaryrefslogtreecommitdiff
path: root/src/check_expr.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-07-14 12:39:30 +0100
committergingerBill <bill@gingerbill.org>2024-07-14 12:39:30 +0100
commit3dff83f3dc2914cdfb9a8f19cf990682cda41b03 (patch)
tree216cbef3e900ba3d4291d7a49c03e61cf9b748ac /src/check_expr.cpp
parent8642d719f0ece3625d535d47b41ff4d35072f47f (diff)
Mock out `#no_capture` for future use
Diffstat (limited to 'src/check_expr.cpp')
-rw-r--r--src/check_expr.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp
index 645d8ac5a..4edd34990 100644
--- a/src/check_expr.cpp
+++ b/src/check_expr.cpp
@@ -6034,19 +6034,18 @@ gb_internal CallArgumentError check_call_arguments_internal(CheckerContext *c, A
Entity *vt = pt->params->Tuple.variables[pt->variadic_index];
o.type = vt->type;
- // NOTE(bill, 2024-07-14): minimize the stack usage for variadic parameter that use `#no_capture`
- // on the variadic parameter
- if (c->decl && (vt->flags & EntityFlag_NoCapture)) {
+ // NOTE(bill, 2024-07-14): minimize the stack usage for variadic parameters with the backing array
+ if (c->decl) {
bool found = false;
- for (NoCaptureData &nc : c->decl->no_captures) {
- if (are_types_identical(vt->type, nc.slice_type)) {
- nc.max_count = gb_max(nc.max_count, variadic_operands.count);
+ for (auto &vr : c->decl->variadic_reuses) {
+ if (are_types_identical(vt->type, vr.slice_type)) {
+ vr.max_count = gb_max(vr.max_count, variadic_operands.count);
found = true;
break;
}
}
if (!found) {
- array_add(&c->decl->no_captures, NoCaptureData{vt->type, variadic_operands.count});
+ array_add(&c->decl->variadic_reuses, VariadicReuseData{vt->type, variadic_operands.count});
}
}