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
/
pr95118.c
blob
69bc47fd7aad5d4cf14fc7cee7e064dba3f8020e
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-fre" } */
3
4
void
a
();
5
void
b
() {
6
union
{
7
int
c
[
4
];
8
long double
d
;
9
}
e
= {{
0
,
0
,
4
}};
10
a
(
e
.
d
);
11
}