Sign in
qemu
/
qemu
/
430da7a81d356e368ccd88dcca60f38da9aa5b9a
/
.
/
tests
/
tcg
/
mips
/
mips32-dsp
/
preceu_ph_qbl.c
blob: fa95c26cc48f18b0c67aa59ab4db192c5e751d3c [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<assert.h>
int
main
()
{
int
rd
,
rt
;
int
result
;
rt
=
0x87654321
;
result
=
0x00870065
;
__asm
(
"preceu.ph.qbl %0, %1\n\t"
:
"=r"
(
rd
)
:
"r"
(
rt
)
);
assert
(
result
==
rd
);
return
0
;
}