From: Michael Beck Date: Sun, 17 Sep 2006 21:15:19 +0000 (+0000) Subject: Added support for SymConst(ofs_ent) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=b9d45e08e23bcf058fa8f2d9e18dd78e8cccd044;p=libfirm Added support for SymConst(ofs_ent) --- diff --git a/ir/be/TEMPLATE/TEMPLATE_gen_decls.c b/ir/be/TEMPLATE/TEMPLATE_gen_decls.c index fb431af5d..de2418781 100644 --- a/ir/be/TEMPLATE/TEMPLATE_gen_decls.c +++ b/ir/be/TEMPLATE/TEMPLATE_gen_decls.c @@ -184,6 +184,10 @@ static void do_dump_atomic_init(struct obstack *obst, ir_node *init) obstack_printf(obst, "%s", get_entity_ld_name(get_SymConst_entity(init))); break; + case symconst_ofs_ent: + obstack_printf(obst, "%d", get_entity_offset_bytes(get_SymConst_entity(init))); + break; + case symconst_type_size: obstack_printf(obst, "%d", get_type_size_bytes(get_SymConst_type(init))); break;