beinsn: Remove the write-only attribute pos from be_operand_t.
[libfirm] / ir / be / beinsn_t.h
index 5e7db18..7f3de18 100644 (file)
@@ -31,7 +31,6 @@
 
 #include "bearch.h"
 #include "bechordal.h"
-#include "beirg.h"
 
 typedef struct be_operand_t  be_operand_t;
 typedef struct be_insn_t     be_insn_t;
@@ -41,9 +40,7 @@ struct be_operand_t {
        ir_node *carrier;               /**< node representing the operand value (Proj or the node itself for defs, the used value for uses) */
        be_operand_t *partner;          /**< used in bechordal later... (TODO what does it do?) */
        const bitset_t *regs;           /**< admissible register bitset */
-       int pos;                        /**< pos of the operand (0 to n are inputs, -1 to -n are outputs) */
        const arch_register_req_t *req; /**< register constraints for the carrier node */
-       unsigned has_constraints : 1;   /**< the carrier node has register constraints (the constraint type is limited) */
 };
 
 struct be_insn_t {
@@ -53,7 +50,6 @@ struct be_insn_t {
                                            [use_start-n_ops) uses */
        ir_node *irn;                  /**< ir_node of the instruction */
        unsigned has_constraints : 1;  /**< in_constraints or out_constraints true */
-       unsigned pre_colored     : 1;  /**< all defined values already have a register assigned */
 };
 
 /**