X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firdumptxt.c;h=2a461b85e66f23827c1e5ef193e2b6c2b2379feb;hb=b4647d67ab7885d5da32c2a30242fbc4ed93d81b;hp=980332b9d963b4b8d1bb48fc6a9c989eed32919f;hpb=d7337be4ef7938bf403e919f71844215a56e10b2;p=libfirm diff --git a/ir/ir/irdumptxt.c b/ir/ir/irdumptxt.c index 980332b9d..2a461b85e 100644 --- a/ir/ir/irdumptxt.c +++ b/ir/ir/irdumptxt.c @@ -133,7 +133,6 @@ void dump_irnode_to_file(FILE *F, ir_node *n) case iro_Block: { if (has_Block_entity(n)) fprintf(F, " Label: %lu\n", get_entity_label(get_Block_entity(n))); - ir_fprintf(F, " macro Block: %+F\n", get_Block_MacroBlock(n)); fprintf(F, " block visited: %ld\n", get_Block_block_visited(n)); fprintf(F, " block marked: %u\n", get_Block_mark(n)); if (get_irg_dom_state(get_irn_irg(n)) != dom_none) { @@ -209,10 +208,6 @@ void dump_irnode_to_file(FILE *F, ir_node *n) get_method_res_type(tp, i)); } } break; - case iro_Const: { - assert(get_Const_type(n) != firm_none_type); - ir_fprintf(F, " Const of type %+F\n", get_Const_type(n)); - } break; case iro_SymConst: { switch (get_SymConst_kind(n)) { case symconst_addr_ent: @@ -245,7 +240,6 @@ void dump_irnode_to_file(FILE *F, ir_node *n) fprintf(F, " name: %s\n", get_enumeration_const_name(get_SymConst_enum(n))); break; } - ir_fprintf(F, " type of value: %+F\n", get_SymConst_value_type(n)); } break; case iro_Load: fprintf(F, " mode of loaded value: %s\n", get_mode_name_ex(get_Load_mode(n), NULL)); @@ -373,8 +367,8 @@ static void dump_ir_initializers_to_file(FILE *F, const char *prefix, const ir_initializer_t *initializer, ir_type *type) { - tarval *tv; - ir_node *value; + ir_tarval *tv; + ir_node *value; if (need_nl) { fprintf(F, "\n%s ", prefix);