From ffb63a05a3327e64bcf8ec7fd05c6aab8d304480 Mon Sep 17 00:00:00 2001 From: David Rubin Date: Tue, 16 Apr 2024 22:44:55 -0700 Subject: riscv: finally fix bug + `airAggregateInit` i just hadn't realized that I placed the `riscv_start` branch in the non-simplified starts --- test/behavior/pointers.zig | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/behavior/pointers.zig') diff --git a/test/behavior/pointers.zig b/test/behavior/pointers.zig index ffeeca3986..35c32041ff 100644 --- a/test/behavior/pointers.zig +++ b/test/behavior/pointers.zig @@ -640,6 +640,8 @@ test "cast pointers with zero sized elements" { } test "comptime pointer equality through distinct fields with well-defined layout" { + if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; + const A = extern struct { x: u32, z: u16, @@ -664,6 +666,8 @@ test "comptime pointer equality through distinct fields with well-defined layout } test "comptime pointer equality through distinct elements with well-defined layout" { + if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; + const buf: [2]u32 = .{ 123, 456 }; const ptr: *const [2]u32 = &buf; -- cgit v1.2.3