repo.or.cz
/
qemu
/
agraf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git]
/
tests
/
tcg
/
mips
/
mips64-dsp
/
shra_r_ob.c
blob
184709443e932af6f6f4a2c015d9b3966d880871
1
#include
"io.h"
2
3
int
main
()
4
{
5
long long
rd
,
rt
;
6
long long
res
;
7
8
rt
=
0xbc98756abc654389
;
9
res
=
0xfcfaf8f7fc0705f9
;
10
11
__asm
12
(
"shra_r.ob %0, %1, 0x4
\n\t
"
13
:
"=r"
(
rd
)
14
:
"r"
(
rt
)
15
);
16
17
if
(
rd
!=
res
) {
18
printf
(
"shra_r.ob error
\n
"
);
19
return
-
1
;
20
}
21
return
0
;
22
}