riscv: implement more operators

we can run `std.debug.print` now, with both run-time strings and integers!
This commit is contained in:
David Rubin
2024-07-05 03:49:09 -07:00
parent 9766b68c47
commit 8d30fc45c4
22 changed files with 124 additions and 146 deletions

View File

@@ -16,8 +16,6 @@ test "empty function with comments" {
}
test "truncate" {
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
try expect(testTruncate(0x10fd) == 0xfd);
comptime assert(testTruncate(0x10fd) == 0xfd);
}