temporary switched off the detection of more than one node of mode M from the same...
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 31 Jul 2006 09:41:30 +0000 (09:41 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 31 Jul 2006 09:41:30 +0000 (09:41 +0000)
this happens with the current exception implementation

[r8075]

ir/ir/irvrfy.c

index 7e7ffd3..2cf817d 100644 (file)
@@ -1440,12 +1440,15 @@ static int verify_node_Phi(ir_node *n, ir_graph *irg) {
 
         if (is_Bad(pred_j))
           continue;
+#if 0
+        /* did NOT work with the current exception model where blocks a NOT basic blocks */
         ASSERT_AND_RET_DBG(
           (pred_i == pred_j) || (get_irn_n(pred_i, -1) != get_irn_n(pred_j, -1)),
           "At least two different PhiM predecessors are in the same block",
           0,
           ir_printf("%+F and %+F of %+F are in %+F\n", pred_i, pred_j, n, get_irn_n(pred_i, -1))
         );
+#endif
       }
     }
   }