aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/slice.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-03-12 21:02:53 +0100
committerjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-03-13 11:32:08 +0100
commitb74cd902c6abf46644329409dae493335a1708bc (patch)
tree660c3d3afaf2d3cd1c2f996d2ba1fe92ddd2baea /test/behavior/slice.zig
parent1f28c72c395e9418cbb074d1490426b3dc359a5f (diff)
downloadzig-b74cd902c6abf46644329409dae493335a1708bc.tar.gz
zig-b74cd902c6abf46644329409dae493335a1708bc.zip
stage2 AArch64: enable mul for ints with <= 64 bits
Diffstat (limited to 'test/behavior/slice.zig')
-rw-r--r--test/behavior/slice.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig
index d7d6233c90..d36e9815eb 100644
--- a/test/behavior/slice.zig
+++ b/test/behavior/slice.zig
@@ -204,7 +204,6 @@ test "slicing zero length array" {
const x = @intToPtr([*]i32, 0x1000)[0..0x500];
const y = x[0x100..];
test "compile time slice of pointer to hard coded address" {
- if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage1) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;