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
* gcc.c-torture/execute/20101011-1.c: Skip on SH.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000419-1.c
blob
6127d8b13b0738a58528e5448019846c36089058
1
struct
foo
{
int
a
,
b
,
c
; };
2
3
void
4
brother
(
int
a
,
int
b
,
int
c
)
5
{
6
if
(
a
)
7
abort
();
8
}
9
10
void
11
sister
(
struct
foo f
,
int
b
,
int
c
)
12
{
13
brother
((
f
.
b
==
b
),
b
,
c
);
14
}
15
16
int
17
main
()
18
{
19
struct
foo f
= {
7
,
8
,
9
};
20
sister
(
f
,
1
,
2
);
21
exit
(
0
);
22
}