* Makefile.tpl: Clean $(BUILD_SUBDIR).
[deliverable/binutils-gdb.git] / ld / testsuite / ld-empic / relax1.c
CommitLineData
252b5132
RH
1/* First source file in relaxation test. */
2
3extern int bar ();
4static int foo2 ();
5
6int foo (int i)
7{
8 switch (i)
9 {
10 case 0: bar (0); break;
11 case 1: bar (1); break;
12 case 2: bar (2); break;
13 case 3: bar (3); break;
14 case 4: bar (foo2); break;
15 case 5: bar (bar); break;
16 }
17 while (1)
18 if (i)
19 return bar ();
20}
21
22static int foo2 () { }
This page took 0.170813 seconds and 4 git commands to generate.