cleanup: Remove pointless assert(is_${NODE}(x)) just before get_${NODE}_${FOO}(x...
[libfirm] / ir / be / beinsn_t.h
index 35c3bf7..8c8c953 100644 (file)
@@ -27,7 +27,6 @@
 
 #include "firm_types.h"
 #include "bitset.h"
-#include "obst.h"
 
 #include "bearch.h"
 #include "bechordal.h"
@@ -36,10 +35,9 @@ typedef struct be_operand_t  be_operand_t;
 typedef struct be_insn_t     be_insn_t;
 
 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?) */
-       unsigned const *regs;           /**< admissible register bitset */
-       const arch_register_req_t *req; /**< register constraints for the carrier node */
+       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?) */
+       unsigned const *regs;    /**< admissible register bitset */
 };
 
 struct be_insn_t {
@@ -58,6 +56,6 @@ struct be_insn_t {
  *
  * @return the be_insn for the IR node
  */
-be_insn_t *be_scan_insn(be_chordal_env_t const *env, ir_node *irn);
+be_insn_t *be_scan_insn(be_chordal_env_t *env, ir_node *irn);
 
 #endif /* FIRM_BE_BEINSN_T_H */