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