Disabled broken check on the inheritance representation.
authorJulian Oppermann <julian.oppermann@student.kit.edu>
Mon, 14 Mar 2011 13:35:32 +0000 (14:35 +0100)
committerJulian Oppermann <julian.oppermann@student.kit.edu>
Mon, 14 Mar 2011 13:40:25 +0000 (14:40 +0100)
ir/tr/trverify.c

index 1be5f19..05d57a0 100644 (file)
@@ -178,6 +178,7 @@ static int check_class(ir_type *tp)
                        show_ent_overwrite_cnt(mem)
                );
 
+#if 0
                for (j = 0, m = get_entity_n_overwrites(mem); j < m; ++j) {
                        ir_entity *ovw = get_entity_overwrites(mem, j);
                        size_t    k, n_super;
@@ -196,6 +197,8 @@ static int check_class(ir_type *tp)
                                }
                        }
                }
+#endif
+
        }
        return 0;
 }