1 /* PR optimization/10171 */
2 /* Bug: unroll_loop misoptimized the function so that we got
3 0 iterations of the loop rather than the correct 1. */
6 extern void abort (void);
7 extern void exit (int);
9 __inline__
int tag() { return 0; }
15 for (i
= 0; i
< (tag() ? 2 : 1); i
++)