aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/slice.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-08-27 20:22:54 +0200
committerjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-09-09 19:17:17 +0200
commit261fec8036e1e5518951d91c5fc27b53c1a511d8 (patch)
tree03e2856039842234617a97d32233551c447e9795 /test/behavior/slice.zig
parente2b029e2c8ad761c32886d27aa0227655a60eb9e (diff)
downloadzig-261fec8036e1e5518951d91c5fc27b53c1a511d8.tar.gz
zig-261fec8036e1e5518951d91c5fc27b53c1a511d8.zip
stage2 ARM: amend implementation of various AIR instructions
- unwrap_errunion_err for registers - unwrap_errunion_payload for registers - ptr_slice_len_ptr for all MCValues - ptr_slice_ptr_ptr for all MCValues
Diffstat (limited to 'test/behavior/slice.zig')
-rw-r--r--test/behavior/slice.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig
index 5e0498342c..fad6cd643f 100644
--- a/test/behavior/slice.zig
+++ b/test/behavior/slice.zig
@@ -28,7 +28,6 @@ comptime {
test "slicing" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
var array: [20]i32 = undefined;
@@ -283,7 +282,6 @@ test "slice type with custom alignment" {
test "obtaining a null terminated slice" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
// here we have a normal array
var buf: [50]u8 = undefined;