remove irsimpletype stuff (unused/broken)
[libfirm] / ir / be / beuses.h
index 17b838a..836f4ee 100644 (file)
@@ -30,7 +30,7 @@
 #include "firm_types.h"
 #include "belive.h"
 
-typedef struct _be_next_use_t {
+typedef struct be_next_use_t {
        unsigned       time;
        int            outermost_loop;
        const ir_node *before;
@@ -39,17 +39,17 @@ typedef struct _be_next_use_t {
 #define USES_INFINITY  10000000
 #define USES_PENDING   9999999
 
-static INLINE int USES_IS_INFINITE(unsigned time)
+static inline int USES_IS_INFINITE(unsigned time)
 {
        return time >= USES_INFINITY;
 }
 
-static INLINE int USES_IS_PENDING(unsigned time)
+static inline int USES_IS_PENDING(unsigned time)
 {
        return time == USES_PENDING;
 }
 
-typedef struct _be_uses_t be_uses_t;
+typedef struct be_uses_t be_uses_t;
 
 be_next_use_t be_get_next_use(be_uses_t *uses, ir_node *from,
                          unsigned from_step, const ir_node *def,