blob: 720546a71f32f90e73fd819421c009130087b176 [file] [log] [blame]
extern void abort (void);
typedef long fract32;
fract32 foo (fract32 f, short n)
{
return __builtin_bfin_shr_fr1x32 (f, n);
}
int main ()
{
fract32 t;
t = foo (0xc000e4ff, -4);
if (t != 0x80000000)
abort ();
return 0;
}