Test case for historical reasons
[libfirm] / ir / be / mips / bearch_mips_t.h
index edf83f7..03c979a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -35,7 +35,6 @@
 #include "set.h"
 
 typedef struct mips_isa_t            mips_isa_t;
-typedef struct mips_irn_ops_t        mips_irn_ops_t;
 typedef struct mips_transform_env_t  mips_transform_env_t;
 
 struct mips_code_gen_t {
@@ -45,18 +44,12 @@ struct mips_code_gen_t {
        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) */
-       ir_node                        **bl_list;               /**< The block schedule list. */
-       survive_dce_t                              *bl_list_sdce;       /**< survive dce environment for the block schedule list */
+       ir_node                        **block_schedule;
 };
 
 struct mips_isa_t {
-       arch_isa_t             arch_isa;    /**< must be derived from arch_isa_t */
-       be_emit_env_t          emit;        /**< An emitter environment for the GAS emitter. */
-};
-
-struct mips_irn_ops_t {
-       const arch_irn_ops_if_t *impl;
-       mips_code_gen_t         *cg;
+       arch_env_t             arch_env;    /**< must be derived from arch_env_t */
+       mips_code_gen_t       *cg;
 };