add missing symbol in call

This commit is contained in:
Brendan Hansknecht 2024-07-10 21:03:56 -07:00
parent ba9b15f7d6
commit f92d1934d4
No known key found for this signature in database
GPG key ID: 0EA784685083E75B

View file

@ -751,7 +751,9 @@ fn modify_refcount<'a>(
op,
update_mode: UpdateModeId::BACKEND_DUMMY,
},
arguments: root.arena.alloc([ptr, alignment_sym]),
arguments: root
.arena
.alloc([ptr, alignment_sym, elements_refcounted_sym]),
});
let zig_call_stmt = Stmt::Let(zig_call_result, zig_call_expr, LAYOUT_UNIT, following);