aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-srec/sr1.c
blob: cfa58879dc787835b3d285e5122a12d1fdba50fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* This file is compiled and linked into the S-record format.  */

extern int e1;
extern int e2;
int i;
int j = 1;
static int k;
static int l = 1;
static char ab[] = "This is a string constant";

extern int fn1 ();
extern int fn2 ();

int
main ()
{
  fn1 (ab);
  fn2 ("static string constant");
  return e1 + e2 + i + j + k + l;
}

int
__main ()
{
}

/* V_SPILL and V_FILL are used by a29k-amd-udi.  */

int
V_SPILL ()
{
}

int
V_FILL ()
{
}