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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
struct-return-2_main.c
blob
c0dec1cc30bfd8ec47122695d1871edd67f7726d
1
/* Test function return values. This test includes structs that are
2
arrays of unsigned integral scalars. */
3
/* { dg-skip-if "limited code space" { pdp11-*-* } } */
4
5
extern
void
struct_return_2_x
(
void
);
6
extern
void
exit
(
int
);
7
int
fails
;
8
9
int
10
main
()
11
{
12
struct_return_2_x
();
13
exit
(
0
);
14
}