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