Do not mark the transformed as visited. It makes no sense at all.
[libfirm] / ir / be / test / unknown_combo.c
1 /*$ -fcombo $*/
2
3 int main() {
4         int x;
5
6         if (x == 2)
7                 printf("x == 2\n");
8         if (x == 3)
9                 printf("x == 3\n");
10         return 0;
11 }