blob: f78303a180749ab36fe8a755480311980bac5420 [file] [log] [blame]
extern void abort (void);
typedef short fract16;
fract16 foo (fract16 f, short n)
{
return __builtin_bfin_shl_fr1x16 (f, n);
}
int main ()
{
fract16 t1;
t1 = foo (0xc101, 4);
if (t1 != 0xffff8000)
abort ();
return 0;
}