repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
splet-1.c
blob
03dbb2e3a3cd17387b895ea581f7abbfaf7335fe
1
/* Test inl-sparc.h. */
2
3
/* { dg-do run { target sparclet-*-* } } */
4
/* { dg-options -mcpu=sparclet } */
5
6
#include <inl-sparc.h>
7
8
main
()
9
{
10
int
a
,
b
;
11
12
a
=
scan
(
1
,
2
);
13
if
(
a
!=
3
)
14
abort
();
15
16
b
=
shuffle
(
4
,
5
);
17
if
(
b
!=
6
)
18
abort
();
19
20
exit
(
0
);
21
}