aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/structopt-1.c
blob: e5fe291d96a627386a17ac1e3b687f5bb1774f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-lim1-details" } */
int x; int y;
struct { int x; int y; } global;
int foo() {
	int i;
	for ( i=0; i<10; i++)
		y += x*x;
	for ( i=0; i<10; i++)
		global.y += global.x*global.x;
}

/* { dg-final { scan-tree-dump-times "Executing store motion of global.y" 1 "lim1" } } */
/* XXX: We should also check for the load motion of global.x, but there is no easy way to do this.  */
/* { dg-final { cleanup-tree-dump "lim1" } } */