bescripts: Copy all common node attributes into the constructor variants.
[libfirm] / ir / be / amd64 / bearch_amd64_t.h
index c69e142..09b6531 100644 (file)
@@ -20,7 +20,6 @@
 /**
  * @file
  * @brief   declarations for TEMPALTE backend -- private header
- * @version $Id: bearch_amd64_t.h 26542 2009-09-18 09:18:32Z matze $
  */
 #ifndef FIRM_BE_amd64_BEARCH_amd64_T_H
 #define FIRM_BE_amd64_BEARCH_amd64_T_H
 #include "debug.h"
 #include "amd64_nodes_attr.h"
 #include "be.h"
-#include "../beemitter.h"
+#include "beemitter.h"
 #include "set.h"
 
 typedef struct amd64_isa_t            amd64_isa_t;
 
-typedef struct amd64_irg_data_t {
-       ir_graph    *irg;            /**< current irg */
-       amd64_isa_t *isa;            /**< the isa instance */
-       char         dump;           /**< set to 1 if graphs should be dumped */
-       ir_node     *noreg_gp;       /**< unique NoReg_GP node */
-} amd64_irg_data_t;
-
 struct amd64_isa_t {
        arch_env_t  base;      /**< must be derived from arch_isa */
 };
 
-static inline amd64_irg_data_t *amd64_get_irg_data(const ir_graph *irg)
-{
-       return (amd64_irg_data_t*) be_birg_from_irg(irg)->isa_link;
-}
-
 ir_node *amd64_new_NoReg_gp(ir_graph *irg);
 
 #endif