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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
scalar-by-value-1_main.c
blob
5272a379f4cb5ff5797b3107c02c6ac111a64f01
1
/* Test passing scalars by value. This test includes scalar types that
2
are supported by va_arg. */
3
4
extern
void
scalar_by_value_1_x
(
void
);
5
extern
void
exit
(
int
);
6
int
fails
;
7
8
int
9
main
()
10
{
11
scalar_by_value_1_x
();
12
exit
(
0
);
13
}