diff options
| author | David Rubin <daviru007@icloud.com> | 2024-09-01 02:32:33 -0700 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-09-01 18:31:01 +0100 |
| commit | 0d295d76358037c15d9dc1f56b7b43de29a94d8d (patch) | |
| tree | 1a43fbd65ec21c5eb31cfa40b9c6fb25592db4e1 /test/behavior | |
| parent | 97ed2392033ba1713b6ab16d88d84dd019d6bb2e (diff) | |
| download | zig-0d295d76358037c15d9dc1f56b7b43de29a94d8d.tar.gz zig-0d295d76358037c15d9dc1f56b7b43de29a94d8d.zip | |
riscv: implement `switch_dispatch` & `loop_switch_br`
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/switch_loop.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/switch_loop.zig b/test/behavior/switch_loop.zig index e77e23cfd7..d35a4e1636 100644 --- a/test/behavior/switch_loop.zig +++ b/test/behavior/switch_loop.zig @@ -80,6 +80,7 @@ test "switch loop on tagged union" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; const S = struct { const U = union(enum) { |
