rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20030310-1.c

14 lines
126 B
C

static inline void
foo (char accept)
{
char s;
while (s == accept) ;
}
static void
bar (void)
{
char ch;
foo (ch);
}