aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/sparc/fpcmpdeshl.c
blob: 3e3daa6e99f151dabe4b013beeaa86ec8c1db83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* { dg-do compile } */
/* { dg-options "-mvis4b" } */

typedef unsigned char vec8 __attribute__((vector_size(8)));
typedef short vec16 __attribute__((vector_size(8)));
typedef int vec32 __attribute__((vector_size(8)));

long test_fpcmpde8shl (vec8 a, vec8 b)
{
  return __builtin_vis_fpcmpde8shl (a, b, 2);
}

long test_fpcmpde16shl (vec16 a, vec16 b)
{
  return __builtin_vis_fpcmpde16shl (a, b, 2);
}

long test_fpcmpde32shl (vec32 a, vec32 b)
{
  return __builtin_vis_fpcmpde32shl (a, b, 2);
}

/* { dg-final { scan-assembler "fpcmpde8shl\t%" } } */
/* { dg-final { scan-assembler "fpcmpde16shl\t%" } } */
/* { dg-final { scan-assembler "fpcmpde32shl\t%" } } */