PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre23.c
blob42b08f0dfa8c35ae8b94609dc82797c58c24540d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats -fno-tree-loop-im" } */
4 struct {
5 int a;
6 int large[100];
7 } x;
9 int foo(int argc)
11 int c;
12 int i;
13 int e;
15 for (i = 0; i < argc; i++)
17 e = x.a;
18 x.a = 9;
20 return e;
23 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre" } } */