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
s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git]
/
tests
/
tcg
/
mips
/
mips64-dsp
/
absq_s_ph.c
blob
238416d438c2c68b28d0e379e4faeaa5194b93f8
1
#include
"io.h"
2
3
int
main
(
void
)
4
{
5
long long
rd
,
rt
;
6
long long
result
;
7
8
rt
=
0x10017EFD
;
9
result
=
0x10017EFD
;
10
11
__asm
12
(
"absq_s.ph %0, %1
\n\t
"
13
:
"=r"
(
rd
)
14
:
"r"
(
rt
)
15
);
16
if
(
rd
!=
result
) {
17
printf
(
"absq_s.ph wrong
\n
"
);
18
19
return
-
1
;
20
}
21
22
rt
=
0x8000A536
;
23
result
=
0x7FFF5ACA
;
24
25
__asm
26
(
"absq_s.ph %0, %1
\n\t
"
27
:
"=r"
(
rd
)
28
:
"r"
(
rt
)
29
);
30
if
(
rd
!=
result
) {
31
printf
(
"absq_s.ph wrong
\n
"
);
32
33
return
-
1
;
34
}
35
36
return
0
;
37
}