aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr78527.c
blob: d1bbdc4db0783ae7493e58d7db786a2930fbfe2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* PR rtl-optimization/78527 */

unsigned a;
short b, e;
int *c;
char d;

int
main ()
{
  int f = 80;
  for (;;) {
    if (f > 432)
      *c = a;
    while (b)
      if (d)
        e = -(a >> f);
    c = &f;
    b = e;
  }
}