1 /* { dg-do compile } */ 2 /* { dg-options "-O2" } */ 3 foo(int i,int j)4 long long foo(int i, int j) 5 { 6 return i ? (long long)(!j) : 0; 7 } 8 9