Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / builtins / mult_fr1x32x32-1.c
blobff41bf5cfbca29edf51dbb767e3e95ddfd1af326
1 extern void abort (void);
3 typedef long fract32;
5 int main ()
7 fract32 t;
9 t = __builtin_bfin_mult_fr1x32x32 (0x80000000, 0x80000000);
10 if (t != 0x7fffffff)
11 abort ();
13 return 0;