daily update
[deliverable/binutils-gdb.git] / gas / testsuite / gas / tic80 / relocs1.c
CommitLineData
252b5132
RH
1extern int xfunc (int y);
2
3static int sfunc (int y)
4{
5 xfunc (y);
6}
7
8int gfunc (int y)
9{
10 sfunc (y);
11}
12
13int branches (int y)
14{
15 int z;
16
17 for (z = y; z < y + 10; z++)
18 {
19 if (z & 0x1)
20 {
21 gfunc (z);
22 }
23 else
24 {
25 xfunc (z);
26 }
27 }
28}
This page took 0.310384 seconds and 4 git commands to generate.