mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
23 lines
372 B
C
23 lines
372 B
C
/* First source file in relaxation test. */
|
|
|
|
extern int bar ();
|
|
static int foo2 ();
|
|
|
|
int foo (int i)
|
|
{
|
|
switch (i)
|
|
{
|
|
case 0: bar (0); break;
|
|
case 1: bar (1); break;
|
|
case 2: bar (2); break;
|
|
case 3: bar (3); break;
|
|
case 4: bar (foo2); break;
|
|
case 5: bar (bar); break;
|
|
}
|
|
while (1)
|
|
if (i)
|
|
return bar ();
|
|
}
|
|
|
|
static int foo2 () { }
|