- fixed iterator handling
[libfirm] / ir / ir / irop_t.h
index 8364fe6..7fa5e6c 100644 (file)
@@ -26,7 +26,6 @@
 #ifndef FIRM_IR_IROP_T_H
 #define FIRM_IR_IROP_T_H
 
-#include "firm_config.h"
 #include "irop.h"
 #include "irtypes.h"
 #include "tv.h"
@@ -158,11 +157,11 @@ static INLINE const ir_op_ops *_get_op_ops(const ir_op *op) {
   return &op->ops;
 }
 
-static INLINE void _set_op_tag(ir_op *op, void *tag) {
+static INLINE void _set_op_tag(ir_op *op, unsigned tag) {
        op->tag = tag;
 }
 
-static INLINE void *_get_op_tag(const ir_op *op) {
+static INLINE unsigned _get_op_tag(const ir_op *op) {
        return op->tag;
 }