Sign in
qemu
/
qemu
/
4aa3510f6f36c5ea35219acf641788222d977437
/
.
/
tests
/
tcg
/
mips
/
mips64-dsp
/
preceu_ph_qbl.c
blob: 81f7917c1900123ee0e5f52bd8f3a654987df91e [
file
] [
log
] [
blame
]
#include
"io.h"
int
main
(
void
)
{
long
long
rd
,
rt
;
long
long
result
;
rt
=
0x87654321
;
result
=
0x00870065
;
__asm
(
"preceu.ph.qbl %0, %1\n\t"
:
"=r"
(
rd
)
:
"r"
(
rt
)
);
if
(
result
!=
rd
)
{
printf
(
"preceu.ph.qbl wrong\n"
);
return
-
1
;
}
return
0
;
}