aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/align.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2022-10-23 12:55:20 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2022-10-25 05:11:29 -0400
commit1bab8548688ec13d29abbf3820bb2f9723e09c66 (patch)
tree9121e2e04275e4e552eb5a718af17bfa5bd82169 /test/behavior/align.zig
parent65a48df5324278c3d876e168b523894c8662e546 (diff)
downloadzig-1bab8548688ec13d29abbf3820bb2f9723e09c66.tar.gz
zig-1bab8548688ec13d29abbf3820bb2f9723e09c66.zip
cbe: implement 128-bit and fix smaller integer builtins
Diffstat (limited to 'test/behavior/align.zig')
-rw-r--r--test/behavior/align.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/align.zig b/test/behavior/align.zig
index 4188104459..ca2aee52dd 100644
--- a/test/behavior/align.zig
+++ b/test/behavior/align.zig
@@ -393,8 +393,6 @@ test "function callconv expression depends on generic parameter" {
}
test "runtime-known array index has best alignment possible" {
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
-
// take full advantage of over-alignment
var array align(4) = [_]u8{ 1, 2, 3, 4 };
comptime assert(@TypeOf(&array[0]) == *align(4) u8);