PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / foldconst-5.c
blobd429055565adf669d0eb63fe35c210f7ad283d3f
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-ccp1" } */
5 static const char a[5]="t";
6 static const int b[5]={1,2};
7 static const struct a {int a : 6; int b : 6;} c = {5,9};
8 int
9 test()
11 return a[2]+b[1]+b[3]+c.b;
13 /* { dg-final { scan-tree-dump "return 11;" "ccp1" } } */