stage2 ARM: implement return types with abi size > 4

This commit is contained in:
joachimschmidt557
2022-02-28 22:41:36 +01:00
committed by Jakub Konka
parent ec54ceee6d
commit ca97caab8a
3 changed files with 196 additions and 107 deletions

View File

@@ -113,7 +113,6 @@ fn first4KeysOfHomeRow() []const u8 {
test "return string from function" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
try expect(mem.eql(u8, first4KeysOfHomeRow(), "aoeu"));
}