Alloc is not a binop
authorMatthias Braun <matze@braunis.de>
Sat, 31 May 2008 10:27:30 +0000 (10:27 +0000)
committerMatthias Braun <matze@braunis.de>
Sat, 31 May 2008 10:27:30 +0000 (10:27 +0000)
[r19882]

ir/ir/irvrfy.c

index 034ff42..455df1d 100644 (file)
@@ -1749,7 +1749,7 @@ static int verify_node_Alloc(ir_node *n, ir_graph *irg) {
                !mode_is_signed(op2mode) &&
                mymode == mode_T,
                "Alloc node", 0,
-               show_binop_failure(n, "/* Alloc: BB x M x int_u --> M x X x ref */");
+               show_node_failure(n);
        );
        return 1;
 }