Added gen_ir.py support for Bound, CopyB, InstOf and Raise
[libfirm] / ir / stat / statev.c
index 8ca9a0f..52a7f84 100644 (file)
@@ -24,9 +24,7 @@
  * @date        17.06.2007
  * @version     $Id$
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
 
 #include <assert.h>
 #include <string.h>
@@ -39,9 +37,7 @@
 #include "irprintf.h"
 #include "statev.h"
 
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
 
 #ifdef HAVE_REGEX_H
 #define FIRM_HAVE_REGEX
@@ -78,7 +74,7 @@ timing_sched_env_t stat_ev_sched_normal;
 #include <regex.h>
 static regex_t regex;
 static regex_t *filter = NULL;
-static INLINE int key_matches(const char *key)
+static inline int key_matches(const char *key)
 {
        if (!filter)
                return 1;
@@ -88,7 +84,7 @@ static INLINE int key_matches(const char *key)
 
 #else
 static char filter[128] = { '\0' };
-static INLINE int key_matches(const char *key)
+static inline int key_matches(const char *key)
 {
        int i = 0;