Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20000502-1.c
blobfcf7899a1598fe343bfd6ad3bd95ca7766d6ee1c
1 static int minimum(int a, int b)
3 if(a < b)
4 return a;
5 else
6 return b;
8 static int a, b;
9 static inline int foo(void)
11 a = minimum (a, b);
12 return 0;
14 static int bar(void)
16 return foo();