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.c-torture
/
execute
/
931004-7.c
blob
8ab2fcb2ab26f123824191cf28996837466bb38a
1
struct
tiny
2
{
3
char
c
;
4
};
5
6
f
(
int
n
,
struct
tiny x
,
struct
tiny y
,
struct
tiny z
,
long
l
)
7
{
8
if
(
x
.
c
!=
10
)
9
abort
();
10
11
if
(
y
.
c
!=
11
)
12
abort
();
13
14
if
(
z
.
c
!=
12
)
15
abort
();
16
17
if
(
l
!=
123
)
18
abort
();
19
}
20
21
main
()
22
{
23
struct
tiny x
[
3
];
24
x
[
0
].
c
=
10
;
25
x
[
1
].
c
=
11
;
26
x
[
2
].
c
=
12
;
27
f
(
3
,
x
[
0
],
x
[
1
],
x
[
2
], (
long
)
123
);
28
exit
(
0
);
29
}
30