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
/
compile
/
20010329-1.c
blob
4d495e1afc8252334076918f52c06e0aae7000d5
1
union
u
{
2
unsigned char
a
;
3
double
b
;
4
};
5
6
int
a
;
7
8
union
u
foo
(
void
)
9
{
10
union
u b
;
11
12
if
(
a
)
13
b
.
a
=
1
;
14
else
15
b
.
a
=
0
;
16
return
b
;
17
}