diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-03-31 11:00:25 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-03-31 11:00:25 +0200 |
| commit | 370286ee25efee1af73987d8b17d67a5b2c33227 (patch) | |
| tree | a2e76d493fb97b1855119c2c73142a1d103a371e /tests/test17.c | |
| parent | 311e8ac3e37d3f14cba4f55c1725da896f832dae (diff) | |
| download | box64-370286ee25efee1af73987d8b17d67a5b2c33227.tar.gz box64-370286ee25efee1af73987d8b17d67a5b2c33227.zip | |
More test17 coverage
Diffstat (limited to 'tests/test17.c')
| -rw-r--r-- | tests/test17.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test17.c b/tests/test17.c index 20ac6be9..883abf66 100644 --- a/tests/test17.c +++ b/tests/test17.c @@ -351,6 +351,12 @@ printf(N " %g, %g => %g\n", b, a, *(float*)&r); MULITGO2pd(min, minpd) MULITGO2pd(div, divpd) MULITGO2pd(max, maxpd) + GO2(unpacklo, 8, punpcklbw, a128_8, b128_8) + GO2(unpacklo, 16, punpcklwd, a128_16, b128_16) + GO2(unpacklo, 32, punpckldq, a128_32, b128_32) + GO2(packs, 16, ppacksswb, a128_16, b128_16) + + GO2(packs, 32, ppackssdw, a128_32, b128_32) return 0; } |