- Added an is_Jmp function
[libfirm] / ir / ir / irop.h
index 6540751..a8f4d76 100644 (file)
@@ -173,7 +173,7 @@ opcode get_op_code(const ir_op *op);
 /** op_pin_state_pinned states */
 typedef enum {
   op_pin_state_floats = 0,    /**< Nodes of this opcode can be placed in any basic block. */
-  op_pin_state_pinned,        /**< Nodes must remain in this basic block. */
+  op_pin_state_pinned = 1,    /**< Nodes must remain in this basic block. */
   op_pin_state_exc_pinned,    /**< Node must be remain in this basic block if it can throw an
                                    exception, else can float. Used internally. */
   op_pin_state_mem_pinned     /**< Node must be remain in this basic block if it can throw an