Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20031102-1.c
blobe32b8bd8612269e201e51c89d2f45853ad1be382
1 /* PR optimization/10817.
2 Check that the following code doesn't cause any problems
3 for GCC's if-conversion passes. */
5 int foo(int t)
7 int result = 0;
8 if (t != 0)
9 result = t;
10 return result;