Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / builtins / min_fr1x16-1.c
blob686dcdceff42aae002771fecf48b7cb3ebca21a6
1 extern void abort (void);
3 typedef short fract16;
5 int main ()
7 fract16 t1;
9 t1 = __builtin_bfin_min_fr1x16 (0x7777, 0x7000);
10 if (t1 != 0x7000)
11 abort ();
13 return 0;