diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2024-02-12 00:53:14 +0100 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2024-02-12 05:25:07 +0100 |
| commit | e27db373ec276f7839fac0a024b92a0945b5f905 (patch) | |
| tree | 5a0e337c41ed5dbcf8729356ce003d2d309ea5b0 /lib/std/math | |
| parent | d89472787353bc69f6a13c80c6f576ee3471c1a8 (diff) | |
| download | zig-e27db373ec276f7839fac0a024b92a0945b5f905.tar.gz zig-e27db373ec276f7839fac0a024b92a0945b5f905.zip | |
x86_64: implement `@clz` and `@ctz` of big integers
Diffstat (limited to 'lib/std/math')
| -rw-r--r-- | lib/std/math/big/int_test.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/std/math/big/int_test.zig b/lib/std/math/big/int_test.zig index 3f625f0be1..558ada3374 100644 --- a/lib/std/math/big/int_test.zig +++ b/lib/std/math/big/int_test.zig @@ -918,7 +918,6 @@ test "big.int mul multi-single" { test "big.int mul multi-multi" { if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; var op1: u256 = 0x998888efefefefefefefef; var op2: u256 = 0x333000abababababababab; @@ -1042,7 +1041,6 @@ test "big.int mulWrap single-single signed" { test "big.int mulWrap multi-multi unsigned" { if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; var op1: u256 = 0x998888efefefefefefefef; var op2: u256 = 0x333000abababababababab; |
