blob: 8a8a9c0fb4d6b6d89ed8dd88260d40c1715dc400 [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-O2 -fno-strict-aliasing -msse2" } */
/* { dg-additional-options "-mno-mmx" { target { ! ia32 } } } */
#include "sse2-check.h"
#include "mmx-vals.h"
__attribute__((noinline, noclone))
static void
test_psubusw (long long *ll1, long long *ll2, long long *r)
{
__m64 t1 = *(__m64 *) ll1;
__m64 t2 = *(__m64 *) ll2;
*(__m64 *) r = _m_psubusw (t1, t2);
}
/* Routine to manually compute the results */
static void
compute_correct_result (long long *dst_p, long long *src_p,
long long *res_p)
{
unsigned short *dst = (unsigned short *) dst_p;
unsigned short *src = (unsigned short *) src_p;
unsigned short *res = (unsigned short *) res_p;
int i;
for (i = 0; i < 4; i++)
res[i] = saturate_uw (dst[i] - src[i]);
}
static void
sse2_test (void)
{
int i;
long long r, ck;
int fail = 0;
/* Run the MMX tests */
for (i = 0; i < MMX_num_ops; i += 2)
{
test_psubusw (&MMXops[i], &MMXops[i + 1], &r);
compute_correct_result (&MMXops[i], &MMXops[i + 1], &ck);
if (ck != r)
fail++;
}
if (fail != 0)
abort ();
}