Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / builtins / shr_fr1x32.c
blob8be9ecfd117d2cff4023dddd66dc2812bc809305
1 /* { dg-do run } */
3 typedef int fract32;
5 extern void abort (void);
7 int main ()
9 fract32 f;
11 f = __builtin_bfin_shr_fr1x32 (0x87654321, 4);
12 if (f != 0xf8765432)
13 abort ();
15 return 0;