aboutsummaryrefslogtreecommitdiff
path: root/src/arch/wasm/CodeGen.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2022-02-28 13:34:21 +0200
committerAndrew Kelley <andrew@ziglang.org>2022-02-28 13:09:14 -0700
commit90bce11f62aa2f246b9bce5bc49069a3faf7ec9a (patch)
tree1489691423543c9d3d5c65dcefa7c8cd6ae59354 /src/arch/wasm/CodeGen.zig
parent2682b41da54e9b652dc570140d52f85418d6b89d (diff)
downloadzig-90bce11f62aa2f246b9bce5bc49069a3faf7ec9a.tar.gz
zig-90bce11f62aa2f246b9bce5bc49069a3faf7ec9a.zip
stage2: implement `@frameAddress`
Diffstat (limited to 'src/arch/wasm/CodeGen.zig')
-rw-r--r--src/arch/wasm/CodeGen.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/wasm/CodeGen.zig b/src/arch/wasm/CodeGen.zig
index e2e6b00e84..69a70d0d53 100644
--- a/src/arch/wasm/CodeGen.zig
+++ b/src/arch/wasm/CodeGen.zig
@@ -1726,6 +1726,7 @@ fn genInst(self: *Self, inst: Air.Inst.Index) !WValue {
.error_name,
.errunion_payload_ptr_set,
.field_parent_ptr,
+ .frame_address,
// For these 4, probably best to wait until https://github.com/ziglang/zig/issues/10248
// is implemented in the frontend before implementing them here in the wasm backend.