started adding a relation to the Cmp node
[libfirm] / ir / ir / irop_t.h
index c0c3285..8d008e6 100644 (file)
@@ -48,7 +48,8 @@ void finish_op(void);
  * @param old_node  the old node from which the attributes are read
  * @param new_node  the new node to which the attributes are written
  */
-void default_copy_attr(const ir_node *old_node, ir_node *new_node);
+void default_copy_attr(ir_graph *irg, const ir_node *old_node,
+                       ir_node *new_node);
 
 /**
  * Returns the attribute size of nodes of this opcode.
@@ -66,14 +67,6 @@ static inline int is_op_cfopcode(const ir_op *op) {
        return op->flags & irop_flag_cfopcode;
 }
 
-/**
- * Returns non-zero if the operation manipulates interprocedural control flow:
- * CallBegin, EndReg, EndExcept
- */
-static inline int is_ip_cfopcode(const ir_op *op) {
-       return op->flags & irop_flag_ip_cfopcode;
-}
-
 /** Returns non-zero if operation is commutative */
 static inline int is_op_commutative(const ir_op *op) {
        return op->flags & irop_flag_commutative;