From: Julian Oppermann Date: Mon, 14 Mar 2011 13:35:32 +0000 (+0100) Subject: Disabled broken check on the inheritance representation. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=1cdc9e859b24d35e8fc7aeaee65c76ae15b699ce;p=libfirm Disabled broken check on the inheritance representation. --- diff --git a/ir/tr/trverify.c b/ir/tr/trverify.c index 1be5f19ce..05d57a011 100644 --- a/ir/tr/trverify.c +++ b/ir/tr/trverify.c @@ -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; }