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