Sign in
qemu
/
qemu
/
2e550e31518f90cc9cb7e5c855a1995c317463a3
/
.
/
tests
/
tcg
/
mips
/
mips32-dsp
/
precequ_ph_qbla.c
blob: 31627f0bd6060783d6f3ee0f8bb99c534f0937f2 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<assert.h>
int
main
()
{
int
rd
,
rt
;
int
result
;
rt
=
0x87654321
;
result
=
0x43802180
;
__asm
(
"precequ.ph.qbla %0, %1\n\t"
:
"=r"
(
rd
)
:
"r"
(
rt
)
);
assert
(
result
==
rd
);
return
0
;
}