Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
gcc.target
/
bfin
/
builtins
/
shrl_fr1x16-4.c
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
;
}