diff options
| author | gingerBill <bill@gingerbill.org> | 2023-01-12 12:59:09 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-01-12 12:59:09 +0000 |
| commit | b470ceb4705477ef42a1efc2c8beb5e3ceef2f88 (patch) | |
| tree | eab473b3853eb6f147b4c3033701537275a24aec /src/check_builtin.cpp | |
| parent | c15db051999e51f5c8ecc45fb084e6fb76c9b5c2 (diff) | |
Correct `mpsc_dequeue`
Diffstat (limited to 'src/check_builtin.cpp')
| -rw-r--r-- | src/check_builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp index a7d5536e7..290b1b8cd 100644 --- a/src/check_builtin.cpp +++ b/src/check_builtin.cpp @@ -1687,7 +1687,7 @@ gb_internal bool check_builtin_procedure(CheckerContext *c, Operand *operand, As case BuiltinProc___entry_point: operand->mode = Addressing_NoValue; operand->type = nullptr; - mpmc_enqueue(&c->info->intrinsics_entry_point_usage, call); + mpsc_enqueue(&c->info->intrinsics_entry_point_usage, call); break; case BuiltinProc_DIRECTIVE: |