aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/array.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-04-05 02:18:18 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-04-13 04:17:47 -0400
commit0165187cd07b26f15c2ca7e021747d0989d1956b (patch)
treec64cef85e67a46fd5adbc5fb8b5f3734c694a8cc /test/behavior/array.zig
parente2fe1907ecac075e4d4a37776359144318b6055a (diff)
downloadzig-0165187cd07b26f15c2ca7e021747d0989d1956b.tar.gz
zig-0165187cd07b26f15c2ca7e021747d0989d1956b.zip
x86_64: fix some of the mass confusion about the meaning of `MCValue`
Diffstat (limited to 'test/behavior/array.zig')
-rw-r--r--test/behavior/array.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig
index b2d9816c18..88a6ab947d 100644
--- a/test/behavior/array.zig
+++ b/test/behavior/array.zig
@@ -190,7 +190,6 @@ test "nested arrays of strings" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
const array_of_strings = [_][]const u8{ "hello", "this", "is", "my", "thing" };
for (array_of_strings, 0..) |s, i| {