blob: b416d371e98e44ad0608439fdb28c73b95e974e2 [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;
test()
{
return a.a+b[c];
}
/* { dg-final { scan-tree-dump "return 0;" "ccp2" } } */
/* { dg-final { cleanup-tree-dump "ccp2" } } */