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
libgcc: Fix a warning/error in libgcc2.c [PR117624]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20040707-1.c
blob
25279ae12f6a35b062379b8244e9a3f94a20c099
1
void
exit
(
int
);
2
3
struct
s
{
char
c1
,
c2
; };
4
void
foo
(
struct
s s
)
5
{
6
static struct
s s1
;
7
s1
=
s
;
8
}
9
int
main
()
10
{
11
static struct
s s2
;
12
foo
(
s2
);
13
exit
(
0
);
14
}