repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
scalar-return-1_main.c
blob
0a27f5416b1d84157e7077fc83374bd49eba28dd
1
/* Test function return values. This test includes scalar types that
2
are supported by va_arg. */
3
4
extern
void
scalar_return_1_x
(
void
);
5
extern
void
exit
(
int
);
6
int
fails
;
7
8
int
9
main
()
10
{
11
scalar_return_1_x
();
12
exit
(
0
);
13
}