diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-07-31 01:56:43 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-07-31 03:49:21 -0400 |
| commit | 228c956377e4f33e45fad7e0ba5d9eb5073803a5 (patch) | |
| tree | c4731c4d85805cd6c5acf11e7b53d3d5443519c2 /test/behavior/eval.zig | |
| parent | 2ba787e3038d8776599fb968b3ddec6b7a62a3f3 (diff) | |
| download | zig-228c956377e4f33e45fad7e0ba5d9eb5073803a5.tar.gz zig-228c956377e4f33e45fad7e0ba5d9eb5073803a5.zip | |
std: finish cleanup up asm
This also required implementing the necessary syntax in the x86_64 backend.
Diffstat (limited to 'test/behavior/eval.zig')
| -rw-r--r-- | test/behavior/eval.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/eval.zig b/test/behavior/eval.zig index 778786a338..35cfab9211 100644 --- a/test/behavior/eval.zig +++ b/test/behavior/eval.zig @@ -533,7 +533,7 @@ test "runtime 128 bit integer division" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_c and builtin.cpu.arch == .arm) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest; var a: u128 = 152313999999999991610955792383; var b: u128 = 10000000000000000000; |
