libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr106521.c
blob05c8ce54d0b588328b621c8c1c6cfeef5cc31977
1 /* { dg-do compile } */
2 /* { dg-additional-options "-floop-unroll-and-jam --param unroll-jam-min-percent=0" } */
4 short a, b, e;
5 volatile long c;
6 long d;
7 int main() {
8 for (; d; d++) {
9 long g = a = 1;
10 for (; a; a++) {
11 g++;
14 g && (b = e);
16 return 0;