blob: 0e9b676f66bd10112cad6fe543ecafc49f064aa0 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-ccp2" } */
struct a {int a,b;};
const static struct a a;
static int b[10];
int c;
int
test()
{
return a.a+b[c];
}
/* { dg-final { scan-tree-dump "return 0;" "ccp2" } } */