]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr58346.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr58346.c
CommitLineData
30078c0a
MP
1/* PR tree-optimization/58346 */
2/* { dg-do compile } */
3/* { dg-options "-O" } */
4
5struct U {};
6static struct U b[1] = { };
7extern void bar (struct U);
8
9void
10foo (void)
11{
12 bar (b[0]);
13}
14
15void
16baz (void)
17{
18 foo ();
19}