fixed a bunch of warnings
[libfirm] / ir / be / test / fehler36.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 #ifdef __GNUC__
5 #define NO_INLINE __attribute__((noinline))
6 #else
7 #define NO_INLINE __declspec(noinline)
8 #endif
9
10 float NO_INLINE t2()
11 {
12         float a;
13         return a + 12.54f;
14 }
15
16 float NO_INLINE t()
17 {
18         exit(0);
19 }
20
21 int main()
22 {
23         t();
24         t2();
25         return 0;
26 }