riscv: math progress

This commit is contained in:
David Rubin
2024-04-16 16:39:31 -07:00
parent a615fbc1f8
commit a30af172e8
32 changed files with 73 additions and 191 deletions

View File

@@ -6,8 +6,6 @@ const expect = testing.expect;
const expectError = testing.expectError;
test "dereference pointer" {
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
try comptime testDerefPtr();
try testDerefPtr();
}
@@ -55,7 +53,6 @@ fn PtrOf(comptime T: type) type {
test "implicit cast single item pointer to C pointer and back" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
var y: u8 = 11;
const x: [*c]u8 = &y;