Sign in
gnu
/
binutils-gdb
/
f66673c62e3ffc44d4b82fb95fa4ff33c2b7fb38
/
.
/
sim
/
testsuite
/
bfin
/
ashift_left.s
blob: 04cfa40fd770eb36edcdf049380184871c358c02 [
file
] [
log
] [
blame
]
# Blackfin testcase for left ashift
# Dreg = Dreg << imm (S);
# mach: bfin
.include
"testutils.inc"
.macro test
in
:
req
,
shift
:
req
,
out
:
req
,
opt
imm32 r0
,
\
in
;
r1
=
r0
>>>
\shift \opt
;
CHECKREG r1
,
\out
;
.endm
start
test
2
,
1
,
1
,
(
S
);
pass