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
/
950628-1.c
blob
e330ff569717f08389f6e5c080e3032db20f62a9
1
typedef
struct
2
{
3
char
hours
,
day
,
month
;
4
short
year
;
5
}
T
;
6
7
T
g
(
void
)
8
{
9
T now
;
10
11
now
.
hours
=
1
;
12
now
.
day
=
2
;
13
now
.
month
=
3
;
14
now
.
year
=
4
;
15
return
now
;
16
}
17
18
T
f
(
void
)
19
{
20
T virk
;
21
22
virk
=
g
();
23
return
virk
;
24
}
25
26
main
()
27
{
28
if
(
f
().
hours
!=
1
||
f
().
day
!=
2
||
f
().
month
!=
3
||
f
().
year
!=
4
)
29
abort
();
30
exit
(
0
);
31
}