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
PPC: Fix rldcl
[qemu/agraf.git]
/
tests
/
tcg
/
mips
/
mips64-dsp
/
precequ_ph_qbr.c
blob
495368ce0b02e1c3947eeac3de4c9d461deb99e9
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
rd
,
rt
;
6
long long
result
;
7
8
rt
=
0x87654321
;
9
result
=
0x21801080
;
10
11
__asm
12
(
"precequ.ph.qbr %0, %1
\n\t
"
13
:
"=r"
(
rd
)
14
:
"r"
(
rt
)
15
);
16
if
(
result
!=
rd
) {
17
printf
(
"precequ.ph.qbr wrong
\n
"
);
18
19
return
-
1
;
20
}
21
22
return
0
;
23
}