From b9d45e08e23bcf058fa8f2d9e18dd78e8cccd044 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sun, 17 Sep 2006 21:15:19 +0000 Subject: [PATCH] Added support for SymConst(ofs_ent) --- ir/be/TEMPLATE/TEMPLATE_gen_decls.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.20.1