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
/
preceq_pw_qhr.c
blob
709d4f9004430f873db9618b74099d3474cda4c9
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
rd
,
rt
,
result
;
6
rt
=
0x0123456789ABCDEF
;
7
result
=
0x89AB0000CDEF0000
;
8
9
__asm
10
(
"preceq.pw.qhr %0, %1
\n\t
"
11
:
"=r"
(
rd
)
12
:
"r"
(
rt
)
13
);
14
if
(
result
!=
rd
) {
15
printf
(
"preceq.pw.qhr error
\n
"
);
16
17
return
-
1
;
18
}
19
20
return
0
;
21
}