combo error
[libfirm] / ir / be / test / condeval.c
index 48905cf..acec575 100644 (file)
@@ -9,7 +9,7 @@ int f(int x)
 
 
 #if 1
-static int g(int x)
+static __inline int g(int x)
 {
        return x == 42;
 }
@@ -68,6 +68,21 @@ void j(void)
 }
 #endif
 
+
+#if 1
+static __inline int k(int x)
+{
+       if (x < 23) x = 23;
+       if (x > 42) x = 42;
+       return x;
+}
+
+int l(int x)
+{
+       return k(x) == 23;
+}
+#endif
+
 int main() {
        return 0;
 }