modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/20031102-1.c (about) 1 /* PR optimization/10817. 2 Check that the following code doesn't cause any problems 3 for GCC's if-conversion passes. */ 4 5 int foo(int t) 6 { 7 int result = 0; 8 if (t != 0) 9 result = t; 10 return result; 11 } 12