aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/array.zig
diff options
context:
space:
mode:
authorDavid Rubin <daviru007@icloud.com>2024-05-02 03:33:56 -0700
committerDavid Rubin <daviru007@icloud.com>2024-06-13 02:20:47 -0700
commit05de6c279bb4b36bd8751659984a9918624f7108 (patch)
tree0a3c908736be592aa36e05d7327c73a8643fd62b /test/behavior/array.zig
parent55b28c7e4438b3b8404a0fd703aad45db9dfe2ff (diff)
downloadzig-05de6c279bb4b36bd8751659984a9918624f7108.tar.gz
zig-05de6c279bb4b36bd8751659984a9918624f7108.zip
riscv: `std.fmt.format` running
- implements `airSlice`, `airBitAnd`, `airBitOr`, `airShr`. - got a basic design going for the `airErrorName` but for some reason it simply returns empty bytes. will investigate further. - only generating `.got.zig` entries when not compiling an object or shared library - reduced the total amount of ops a mnemonic can have to 3, simplifying the logic
Diffstat (limited to 'test/behavior/array.zig')
-rw-r--r--test/behavior/array.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig
index a99b10cd3b..81a34ca1a8 100644
--- a/test/behavior/array.zig
+++ b/test/behavior/array.zig
@@ -1047,7 +1047,6 @@ test "union that needs padding bytes inside an array" {
test "runtime index of array of zero-bit values" {
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
var runtime: struct { array: [1]void, index: usize } = undefined;
runtime = .{ .array = .{{}}, .index = 0 };