aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/basic.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2023-01-03 19:20:55 +0800
committerJakub Konka <kubkon@jakubkonka.com>2023-01-03 19:56:09 +0100
commit09122650bab893c721f4fa1a852af93358ed1af2 (patch)
tree2d711729a7bf1ef2e2c95d17cab2af1789dfbfb7 /test/behavior/basic.zig
parent8032ecb73040f837d7232216b16ae7edaacbc867 (diff)
downloadzig-09122650bab893c721f4fa1a852af93358ed1af2.tar.gz
zig-09122650bab893c721f4fa1a852af93358ed1af2.zip
stage2 AArch64: bump up alignment of stack items fitting in regs
This enables us to use more efficient loading and storing for these small stack items
Diffstat (limited to 'test/behavior/basic.zig')
-rw-r--r--test/behavior/basic.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig
index 442cd02d5a..ebca81be96 100644
--- a/test/behavior/basic.zig
+++ b/test/behavior/basic.zig
@@ -890,7 +890,6 @@ test "labeled block with runtime branch forwards its result location type to bre
}
test "try in labeled block doesn't cast to wrong type" {
- if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
const S = struct {
@@ -1036,7 +1035,6 @@ comptime {
}
test "switch inside @as gets correct type" {
- if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
var a: u32 = 0;