aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/loadpre23.c
blob: 9fa073154150d008517560f1a9aafece31ccf817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-pre-stats" } */

struct {
  int a;
  int large[100];
} x;

int foo(int argc)
{
  int c;
  int i;
  int e;

  for (i = 0; i < argc; i++)
    {
      e = x.a;
      x.a = 9;
    }
  return e;
}

/* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"  } } */