Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / builtins / mulhisihh_fr2x16-1.c
blob06790c94a6625627f01d59d6a695a6e8423b80ef
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;
10 int t;
12 a = __builtin_bfin_compose_2x16 (0x5000, 0x7000);
13 b = __builtin_bfin_compose_2x16 (0x4000, 0x2000);
15 t = __builtin_bfin_mulhisihh (a, b);
16 if (t != 0x14000000)
17 abort ();
18 return 0;