diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-07-31 15:34:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-31 15:34:32 -0700 |
| commit | e84cda0ebf8886346d42db78e8f3eb8d0bf515bd (patch) | |
| tree | 9e0ed316fd374bcc3f7a4f26ff70291a9d1ca9fb /test/src | |
| parent | 8f5c333ebe6631629be3b88d797a03b1d677d439 (diff) | |
| parent | 228c956377e4f33e45fad7e0ba5d9eb5073803a5 (diff) | |
| download | zig-e84cda0ebf8886346d42db78e8f3eb8d0bf515bd.tar.gz zig-e84cda0ebf8886346d42db78e8f3eb8d0bf515bd.zip | |
Merge pull request #16622 from jacobly0/cbe-asm-compat
CBE: fix regressions and get new targets passing behavior tests
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/Cases.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/Cases.zig b/test/src/Cases.zig index 08aadaf0d4..aa88ad5c95 100644 --- a/test/src/Cases.zig +++ b/test/src/Cases.zig @@ -1524,7 +1524,7 @@ fn runOneCase( } } else switch (host.getExternalExecutor(target_info, .{ .link_libc = case.link_libc })) { .native => { - if (case.backend == .stage2 and case.target.getCpuArch() == .arm) { + if (case.backend == .stage2 and case.target.getCpuArch().isArmOrThumb()) { // https://github.com/ziglang/zig/issues/13623 continue :update; // Pass test. } |
