added additional files
[libfirm] / ir / be / arm / bearch_arm_t.h
index e24d2bb..7f59bfe 100644 (file)
@@ -14,10 +14,10 @@ typedef struct _arm_code_gen_t {
        FILE                           *out;            /**< output file */
        const arch_env_t               *arch_env;       /**< the arch env */
        set                            *reg_set;        /**< set to memorize registers for FIRM nodes (e.g. phi) */
-       firm_dbg_module_t              *mod;            /**< debugging module */
        int                             emit_decls;     /**< flag indicating if decls were already emitted */
        const be_irg_t                 *birg;           /**< The be-irg (contains additional information about the irg) */
        ir_type                        *int_tp;         /**< the int type, needed for Call conversion */
+       DEBUG_ONLY(firm_dbg_module_t              *mod;)            /**< debugging module */
 } arm_code_gen_t;
 
 
@@ -39,13 +39,12 @@ typedef struct _arm_irn_ops_t {
 /* this is a struct to minimize the number of parameters
    for transformation walker */
 typedef struct _arm_transform_env_t {
-       firm_dbg_module_t *mod;      /**< The firm debugger */
        dbg_info          *dbg;      /**< The node debug info */
        ir_graph          *irg;      /**< The irg, the node should be created in */
        ir_node           *block;    /**< The block, the node should belong to */
        ir_node           *irn;      /**< The irn, to be transformed */
        ir_mode           *mode;     /**< The mode of the irn */
-//     arm_code_gen_t    *cg;       /**< The code generator */
+       DEBUG_ONLY(firm_dbg_module_t *mod;)      /**< The firm debugger */
 } arm_transform_env_t;