1 /* { dg-do compile } */ 2 /* { dg-options "-O2" } */ f(int i)3 int f(int i) 4 { 5 int k = 0; 6 if (i == 0) 7 k = i == 0; 8 return k; 9 } 10