fix another PIC problem
[libfirm] / ir / be / beuses.h
index 17b838a..dc96d08 100644 (file)
@@ -39,12 +39,12 @@ 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;
 }