aboutsummaryrefslogtreecommitdiff
path: root/src/arch/wasm/CodeGen.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-12-26 18:34:20 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-01-15 15:11:36 -0800
commiteb943890d975a50618db8ca7593563fcf8b107da (patch)
tree54b7dc26c3f354e4a5059670aaba6e5450ec1d58 /src/arch/wasm/CodeGen.zig
parentaebccb06e774107d18c4259eafbf5eb3c642237a (diff)
downloadzig-eb943890d975a50618db8ca7593563fcf8b107da.tar.gz
zig-eb943890d975a50618db8ca7593563fcf8b107da.zip
resolve merge conflicts
with 497592c9b45a94fb7b6028bf45b80f183e395a9b
Diffstat (limited to 'src/arch/wasm/CodeGen.zig')
-rw-r--r--src/arch/wasm/CodeGen.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/wasm/CodeGen.zig b/src/arch/wasm/CodeGen.zig
index e1a967e840..8be3e429ab 100644
--- a/src/arch/wasm/CodeGen.zig
+++ b/src/arch/wasm/CodeGen.zig
@@ -1025,7 +1025,7 @@ fn emitWValue(cg: *CodeGen, value: WValue) InnerError!void {
const comp = wasm.base.comp;
const zcu = comp.zcu.?;
const ip = &zcu.intern_pool;
- const ip_index = ip.getNav(nav_ref.nav_index).status.resolved.val;
+ const ip_index = ip.getNav(nav_ref.nav_index).status.fully_resolved.val;
if (ip.isFunctionType(ip.typeOf(ip_index))) {
assert(nav_ref.offset == 0);
const gop = try wasm.indirect_function_table.getOrPut(comp.gpa, ip_index);