aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/gcc/testsuite/gcc.target/bfin/builtins/sub_fr1x16-2.c
blob: 5e45680341700be059bda4c649a42a0542b15105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern void abort (void);

typedef short fract16;

int main ()
{
  fract16 t1;

  t1 = __builtin_bfin_sub_fr1x16 (0x3000, 0x4000);
  if (t1 != -0x1000)
    abort ();
  return 0;
}