diff options
| author | David Rubin <daviru007@icloud.com> | 2024-07-25 05:50:30 -0700 |
|---|---|---|
| committer | David Rubin <daviru007@icloud.com> | 2024-07-26 04:19:55 -0700 |
| commit | a1f6a8ef90f0778e4fc5d314eeb1f0a0a93fa53a (patch) | |
| tree | 7b8cefb2e4cd68db0dd1e3711e42048d6763efb8 /test/behavior/pointers.zig | |
| parent | b533e848a288bcf91da2720dc2646b88225642e9 (diff) | |
| download | zig-a1f6a8ef90f0778e4fc5d314eeb1f0a0a93fa53a.tar.gz zig-a1f6a8ef90f0778e4fc5d314eeb1f0a0a93fa53a.zip | |
riscv: airAsm rewrite
with this rewrite we can call functions inside of
inline assembly, enabling us to use the default start.zig logic
all that's left is to implement lr/sc loops for atomically manipulating
1 and 2 byte values, after which we can use the segfault handler logic.
Diffstat (limited to 'test/behavior/pointers.zig')
| -rw-r--r-- | test/behavior/pointers.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/pointers.zig b/test/behavior/pointers.zig index 5308ebf358..5b8abb9350 100644 --- a/test/behavior/pointers.zig +++ b/test/behavior/pointers.zig @@ -342,7 +342,6 @@ test "array initialization types" { test "null terminated pointer" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO - if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; const S = struct { fn doTheTest() !void { |
