From: Michael Beck Date: Mon, 7 May 2007 20:45:30 +0000 (+0000) Subject: made the birg non-const (needed for the spill-slot coalescing) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=2b43c0a1f9b55f67e796d9795997296318445cb7;p=libfirm made the birg non-const (needed for the spill-slot coalescing) removed unused emit_decls [r13704] --- diff --git a/ir/be/mips/bearch_mips_t.h b/ir/be/mips/bearch_mips_t.h index a9a76c557..8f2469d10 100644 --- a/ir/be/mips/bearch_mips_t.h +++ b/ir/be/mips/bearch_mips_t.h @@ -43,9 +43,8 @@ struct mips_code_gen_t { ir_graph *irg; /**< current irg */ const arch_env_t *arch_env; /**< the arch env */ set *reg_set; /**< set to memorize registers for FIRM nodes (e.g. phi) */ - int emit_decls; /**< flag indicating if decls were already emitted */ mips_isa_t *isa; /**< the isa instance */ - const be_irg_t *birg; /**< The be-irg (contains additional information about the irg) */ + be_irg_t *birg; /**< The be-irg (contains additional information about the irg) */ ir_node **bl_list; /**< The block schedule list. */ survive_dce_t *bl_list_sdce; /**< survive dce environment for the block schedule list */ };