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
/
mips32-dsp
/
preceu_ph_qbl.c
blob
fa95c26cc48f18b0c67aa59ab4db192c5e751d3c
1
#include<stdio.h>
2
#include<assert.h>
3
4
int
main
()
5
{
6
int
rd
,
rt
;
7
int
result
;
8
9
rt
=
0x87654321
;
10
result
=
0x00870065
;
11
12
__asm
13
(
"preceu.ph.qbl %0, %1
\n\t
"
14
:
"=r"
(
rd
)
15
:
"r"
(
rt
)
16
);
17
assert
(
result
==
rd
);
18
19
return
0
;
20
}