aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-04-21 13:32:25 -0700
committerGitHub <noreply@github.com>2023-04-21 13:32:25 -0700
commit528b66f6ec9cfb140abff3dc0c4735c179520f42 (patch)
tree6fc4f164a93a6bd3c2c3467457aedce6fa7959b3 /test/tests.zig
parent391663e497f1871f6bddcf9cbc500710aa9aac4d (diff)
parentb3f9fe6d0439bcbb5c6baa77c0646c4da2e06dd7 (diff)
downloadzig-528b66f6ec9cfb140abff3dc0c4735c179520f42.tar.gz
zig-528b66f6ec9cfb140abff3dc0c4735c179520f42.zip
Merge pull request #15355 from mlugg/feat/liveness-control-flow
Liveness: control flow analysis and other goodies
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig36
1 files changed, 19 insertions, 17 deletions
diff --git a/test/tests.zig b/test/tests.zig
index a563cf9132..4b16ac50c7 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -94,14 +94,15 @@ const test_targets = blk: {
.use_llvm = false,
.use_lld = false,
},
- .{
- .target = .{
- .cpu_arch = .aarch64,
- .os_tag = .linux,
- },
- .use_llvm = false,
- .use_lld = false,
- },
+ // Doesn't support new liveness
+ //.{
+ // .target = .{
+ // .cpu_arch = .aarch64,
+ // .os_tag = .linux,
+ // },
+ // .use_llvm = false,
+ // .use_lld = false,
+ //},
.{
.target = .{
.cpu_arch = .wasm32,
@@ -128,15 +129,16 @@ const test_targets = blk: {
// .use_llvm = false,
// .use_lld = false,
//},
- .{
- .target = .{
- .cpu_arch = .aarch64,
- .os_tag = .macos,
- .abi = .none,
- },
- .use_llvm = false,
- .use_lld = false,
- },
+ // Doesn't support new liveness
+ //.{
+ // .target = .{
+ // .cpu_arch = .aarch64,
+ // .os_tag = .macos,
+ // .abi = .none,
+ // },
+ // .use_llvm = false,
+ // .use_lld = false,
+ //},
.{
.target = .{
.cpu_arch = .x86_64,