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
PR middle-end/30262
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
990525-1.c
blob
39b65d101d66ede2228c7ee8c8fc3023b42cac72
1
struct
blah
{
2
int
m1
,
m2
;
3
};
4
5
void
die
(
struct
blah arg
)
6
{
7
int
i
;
8
struct
blah buf
[
1
];
9
10
for
(
i
=
0
;
i
<
1
;
buf
[
i
++] =
arg
)
11
;
12
if
(
buf
[
0
].
m1
!=
1
) {
13
abort
();
14
}
15
}
16
17
int
main
()
18
{
19
struct
blah s
= {
1
,
2
};
20
21
die
(
s
);
22
exit
(
0
);
23
}