1 /* { dg-do compile } */ 2 /* { dg-options "-O2 -fgraphite-identity -fno-tree-copy-prop --param lim-expensive=3" } */ 3 4 unsigned int dj; 5 6 void np(void)7np (void) 8 { 9 const unsigned int uw = 2; 10 unsigned int eu; 11 12 for (eu = 0; eu < uw; ++eu) 13 { 14 for (dj = 0; dj < uw; ++dj) 15 ; 16 eu -= !!(dj - uw - 1); 17 } 18 } 19