diff options
| author | joachimschmidt557 <joachim.schmidt557@outlook.com> | 2022-03-07 19:33:58 +0100 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2022-03-08 10:54:08 +0100 |
| commit | 3ea603c82a3b7b5d45f21e35d8ce9f6029ff6c3a (patch) | |
| tree | 67133695c22d9483f270b1d4a4bb61359a459c72 /test/behavior/array.zig | |
| parent | ba17552b4eb8def495053013eebbe39fc324c8ae (diff) | |
| download | zig-3ea603c82a3b7b5d45f21e35d8ce9f6029ff6c3a.tar.gz zig-3ea603c82a3b7b5d45f21e35d8ce9f6029ff6c3a.zip | |
stage2 ARM: implement ptr_add, ptr_sub for all element sizes
Also reduces slice_elem_val to ptr_add, simplifying the implementation
Diffstat (limited to 'test/behavior/array.zig')
| -rw-r--r-- | test/behavior/array.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig index 6482c1db2d..e6204729d4 100644 --- a/test/behavior/array.zig +++ b/test/behavior/array.zig @@ -8,7 +8,6 @@ const expectEqual = testing.expectEqual; test "array to slice" { if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; const a: u32 align(4) = 3; const b: u32 align(8) = 4; |
