mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
12bfa0bcf5
* ld-srec/sr1.c (V_SPILL, V_FILL): Define. * ld-srec/sr3.cc: Likewise.
38 lines
442 B
C
38 lines
442 B
C
/* 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 ()
|
|
{
|
|
}
|