Remove the unused attribute const arch_env_t *arch_env from struct mips_code_gen_t.
authorChristoph Mallon <christoph.mallon@gmx.de>
Sat, 11 Oct 2008 20:11:52 +0000 (20:11 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sat, 11 Oct 2008 20:11:52 +0000 (20:11 +0000)
[r22742]

ir/be/mips/bearch_mips.c
ir/be/mips/bearch_mips_t.h

index c53dd91..46e793d 100644 (file)
@@ -418,7 +418,6 @@ static void *mips_cg_init(be_irg_t *birg)
        cg->impl     = &mips_code_gen_if;
        cg->irg      = be_get_birg_irg(birg);
        cg->reg_set  = new_set(mips_cmp_irn_reg_assoc, 1024);
-       cg->arch_env = arch_env;
        cg->isa      = isa;
        cg->birg     = birg;
 
index 03c979a..311439a 100644 (file)
@@ -40,7 +40,6 @@ typedef struct mips_transform_env_t  mips_transform_env_t;
 struct mips_code_gen_t {
        const arch_code_generator_if_t *impl;           /**< implementation */
        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) */
        mips_isa_t                     *isa;            /**< the isa instance */
        be_irg_t                       *birg;           /**< The be-irg (contains additional information about the irg) */