]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr95118.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr95118.c
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 }