Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / builtins / mult_fr1x32-2.c
blob95d4f9d12a1760b7bbaeed59c127bf5d31df7f22
1 extern void abort (void);
3 typedef long fract32;
5 int main ()
7 fract32 t;
9 t = __builtin_bfin_mult_fr1x32 (0x0002, 0x0001);
10 if (t != 0x0004)
11 abort ();
13 return 0;