doc: Remove i?86-*-linux* installation note from 2003
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / builtins / negate_fr1x32-2.c
blob70532f4abf19de16aaeb4318e4147f3eebdb94d1
1 extern void abort (void);
3 typedef long fract32;
5 int main ()
7 fract32 t;
9 t = __builtin_bfin_negate_fr1x32 (0x80000000);
10 if (t != 0x7fffffff)
11 abort ();
13 return 0;