blob: d266ce09535dd21b23e6bccf215fd4fc269f1ae7 [file] [log] [blame]
extern void abort (void);
typedef short fract16;
fract16 foo (fract16 f, short n)
{
return __builtin_bfin_shrl_fr1x16 (f, n);
}
int main ()
{
fract16 t1;
t1 = foo (0x4004, -4);
if (t1 != 0x0040)
abort ();
return 0;
}