aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.target/bfin/builtins/mulhisihh_fr2x16-2.c
blob: ef070584eecfd0d79e27c7b7ad235b83f4bffcae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern void abort (void);

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

int main ()
{
  fract2x16 a, b;
  int t;

  a = __builtin_bfin_compose_2x16 (0xc000, 0xa000);
  b = __builtin_bfin_compose_2x16 (0x7000, 0x2000);

  t = __builtin_bfin_mulhisihh (a, b);
  if (t != 0xe4000000)
    abort ();
  return 0;
}