| ... | @@ -2,9 +2,7 @@ const std = @import("std"); | ... | @@ -2,9 +2,7 @@ const std = @import("std"); |
| 2 | const builtin = @import("builtin"); | 2 | const builtin = @import("builtin"); |
| 3 | | 3 | |
| 4 | test "fixed" { | 4 | test "fixed" { |
| 5 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; | 5 | if (builtin.zig_backend != .stage1) return error.SkipZigTest; |
| 6 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; | | |
| 7 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; | | |
| 8 | const x: f32 align(128) = 12.34; | 6 | const x: f32 align(128) = 12.34; |
| 9 | try std.testing.expect(@ptrToInt(&x) % 128 == 0); | 7 | try std.testing.expect(@ptrToInt(&x) % 128 == 0); |
| 10 | } | 8 | } |