Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre7.c
blob52903dde497be8ba53d732b9142ef459fabc28fb
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 /* We can't eliminate the *p load here in any sane way, as eshup8 may
4 change it. */
6 void eshup8 (unsigned short *);
8 void
9 enormlz (x)
10 unsigned short x[];
12 register unsigned short *p;
13 p = &x[2];
14 while ((*p & 0xff00) == 0)
16 eshup8 (x);
19 /* { dg-final { scan-tree-dump-not "Eliminated:" "pre"} } */