1 /* PR optimization/10817.
2    Check that the following code doesn't cause any problems
3    for GCC's if-conversion passes.  */
4 
foo(int t)5 int foo(int t)
6 {
7   int result = 0;
8   if (t != 0)
9     result = t;
10   return result;
11 }
12 
13