753e6cf1b6
* gcc.c-torture/compile/20000502-1.c: New test. * g++.old-deja/g++.other/align.C: New test. From-SVN: r33610
18 lines
199 B
C
18 lines
199 B
C
static int minimum(int a, int b)
|
|
{
|
|
if(a < b)
|
|
return a;
|
|
else
|
|
return b;
|
|
}
|
|
static int a, b;
|
|
static inline int foo(void)
|
|
{
|
|
a = minimum (a, b);
|
|
return 0;
|
|
}
|
|
static int bar(void)
|
|
{
|
|
return foo();
|
|
}
|