[PR64164] Drop copyrename, use coalescible partition as base when optimizing.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr58955-1.c
bloba79f42f0b38bba7f6e868ba15e7a4f64fa1e5402
1 /* { dg-do run } */
3 extern void abort (void);
5 int a, b, c, d[4] = { 0, 0, 0, 1 };
7 int
8 main ()
10 for (; a < 4; a++)
12 int e = d[a];
13 for (c = 1; c < 1; c++);
14 b = e;
15 d[a] = 0;
17 if (b != 1)
18 abort ();
19 return 0;