aboutsummaryrefslogtreecommitdiff
path: root/src/tilde_proc.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-08-07 15:04:03 +0100
committergingerBill <bill@gingerbill.org>2023-08-07 15:04:03 +0100
commit55c9fb7c5c416ff0b94d0a9a531c41662a4eeb54 (patch)
tree3147103c25b86ac4c6bb1f4dccfe1a595ad669f3 /src/tilde_proc.cpp
parent8201a9ce6ea1d2a89d51f891305d27f5196dc6c9 (diff)
Tilde: Begin work on #soa
Diffstat (limited to 'src/tilde_proc.cpp')
-rw-r--r--src/tilde_proc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tilde_proc.cpp b/src/tilde_proc.cpp
index 26d1ce409..a9a69e415 100644
--- a/src/tilde_proc.cpp
+++ b/src/tilde_proc.cpp
@@ -78,6 +78,7 @@ gb_internal cgProcedure *cg_procedure_create(cgModule *m, Entity *entity, bool i
p->branch_regions.allocator = a;
map_init(&p->variable_map);
+ map_init(&p->soa_values_map);
TB_Linkage linkage = TB_LINKAGE_PRIVATE;
if (p->is_export) {
@@ -143,7 +144,7 @@ gb_internal cgProcedure *cg_procedure_create_dummy(cgModule *m, String const &li
p->branch_regions.allocator = a;
map_init(&p->variable_map);
-
+ map_init(&p->soa_values_map);
TB_Linkage linkage = TB_LINKAGE_PRIVATE;