Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / builtins / dspsubaddsat_fr2x16-2.c
bloba69451ebaca6d36a4b3b355b4d4f8c8c5aa994e0
1 extern void abort (void);
3 typedef short __v2hi __attribute ((vector_size(4)));
4 typedef __v2hi fract2x16;
5 typedef short fract16;
7 int main ()
9 fract2x16 a, b, t;
10 fract16 t1, t2;
12 a = __builtin_bfin_compose_2x16 (0xd000, 0xa000);
13 b = __builtin_bfin_compose_2x16 (0x1000, 0xc000);
15 t = __builtin_bfin_dspsubaddsat (a, b);
16 t1 = __builtin_bfin_extract_hi (t);
17 t2 = __builtin_bfin_extract_lo (t);
18 if (t1 != 0xffffc000 || t2 != 0xffff8000)
19 abort ();
20 return 0;