repo.or.cz
/
qemu
/
agraf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC: Fix rldcl
[qemu/agraf.git]
/
tests
/
tcg
/
mips
/
mips64-dsp
/
mtlo.c
blob
304fffbe7c446faa68ab3141b8355caf93f3211d
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
acli
,
aclo
;
6
long long
result
;
7
8
acli
=
0x004433
;
9
result
=
0x004433
;
10
11
__asm
12
(
"mthi %1, $ac1
\n\t
"
13
"mfhi %0, $ac1
\n\t
"
14
:
"=r"
(
aclo
)
15
:
"r"
(
acli
)
16
);
17
if
(
result
!=
aclo
) {
18
printf
(
"mtlo wrong
\n
"
);
19
}
20
21
return
0
;
22
}