Sign in
qemu
/
qemu
/
430da7a81d356e368ccd88dcca60f38da9aa5b9a
/
.
/
tests
/
tcg
/
mips
/
mips32-dsp
/
raddu_w_qb.c
blob: 77a983c0d20f39c9631c8e87865686345b2e93b1 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<assert.h>
int
main
()
{
int
rd
,
rs
;
int
result
;
rs
=
0x12345678
;
result
=
0x114
;
__asm
(
"raddu.w.qb %0, %1\n\t"
:
"=r"
(
rd
)
:
"r"
(
rs
)
);
assert
(
rd
==
result
);
return
0
;
}