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
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr41282.c
blob
3a0f02d63ab10219658fbc83e214c4a25c4ddfe5
1
struct
S
2
{
3
unsigned int
iu
;
4
};
5
6
union
U
7
{
8
struct
S s
;
9
signed int
is
;
10
};
11
12
extern
signed int
bar
();
13
14
struct
S
foo
(
void
)
15
{
16
union
U u
;
17
18
u
.
is
=
bar
();
19
return
u
.
s
;
20
}