summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/gcc.target/bfin/builtins/shrl_fr2x16-3.c
blob: 4036dbf53e70901e8819a6c6acaf8a763d24b8c0 (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
26
27
extern void abort (void);

typedef short  __v2hi __attribute ((vector_size(4)));
typedef __v2hi fract2x16;
typedef short fract16;

fract2x16 foo (fract2x16 f, short n)
{
  return __builtin_bfin_shrl_fr2x16 (f, n);
}

int main ()
{
  fract2x16 a, t;
  fract16 t1, t2;

  a = __builtin_bfin_compose_2x16 (0xcfff, 0xffff);

  t = foo (a, -4);
  t1 = __builtin_bfin_extract_hi (t);
  t2 = __builtin_bfin_extract_lo (t);
  if (t1 != 0xfffffff0 || t2 != 0xfffffff0)
    abort ();

  return 0;
}

OpenPOWER on IntegriCloud