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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr27409.c
blob
4bfae43be3774edb43127e3e28d52d29054912cc
1
/* { dg-do compile } */
2
3
typedef
struct
{
4
struct
{ }
z
;
5
}
thang_t
;
6
7
struct
{
8
short
e
;
9
thang_t f
;
10
int
g
;
11
}
my_struct
;
12
13
void
foo
(
thang_t
*);
14
void
function
(
int
blaz
)
15
{
16
thang_t
*
fp
= &
my_struct
.
f
;
17
foo
(
fp
);
18
}