replaced inline by __inline to allow to be compiled in gcc and msvc modes
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 13 Jun 2007 14:27:35 +0000 (14:27 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 13 Jun 2007 14:27:35 +0000 (14:27 +0000)
[r14465]

ir/be/test/condeval.c

index cc3407c..acec575 100644 (file)
@@ -9,7 +9,7 @@ int f(int x)
 
 
 #if 1
-static inline int g(int x)
+static __inline int g(int x)
 {
        return x == 42;
 }
@@ -70,7 +70,7 @@ void j(void)
 
 
 #if 1
-static inline int k(int x)
+static __inline int k(int x)
 {
        if (x < 23) x = 23;
        if (x > 42) x = 42;