stage2 AArch64: add more slice support

* airSlice
* airArrayToSlice
* and initial support for airSlicePtr and co
This commit is contained in:
joachimschmidt557
2022-03-05 11:31:51 +01:00
parent ed7e2938ff
commit a06e9eca45
27 changed files with 71 additions and 180 deletions

View File

@@ -142,8 +142,6 @@ test "array with sentinels" {
}
test "void arrays" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
var array: [4]void = undefined;
array[0] = void{};
array[1] = array[2];