diff options
author | Neil Booth <neil@cat.daikokuya.demon.co.uk> | 2001-07-16 06:01:40 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-07-16 06:01:40 +0000 |
commit | f4dc8d96d4b7250a73dfcf7b8213ba87217a45fd (patch) | |
tree | da5d599de3dc978c1a27abae97ff1176e7f941fd /gcc/output.h | |
parent | 9e9f3eded6a1f549433a7821c448c8eefb0cbe99 (diff) | |
download | gcc-f4dc8d96d4b7250a73dfcf7b8213ba87217a45fd.zip gcc-f4dc8d96d4b7250a73dfcf7b8213ba87217a45fd.tar.gz gcc-f4dc8d96d4b7250a73dfcf7b8213ba87217a45fd.tar.bz2 |
output.h (sdb_begin_function_line): Restore as an extern variable.
* output.h (sdb_begin_function_line): Restore as an extern
variable.
* sdbout.c (sdb_begin_function_line): Make extern.
From-SVN: r44030
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/output.h b/gcc/output.h index 93b94c4..58c4062 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -374,6 +374,13 @@ extern void output_constant PARAMS ((tree, int)); extern rtx final_sequence; #endif +/* The line number of the beginning of the current function. Various + md code needs this so that it can output relative linenumbers. */ + +#ifdef SDB_DEBUGGING_INFO /* Avoid undef sym in certain broken linkers. */ +extern int sdb_begin_function_line; +#endif + /* File in which assembler code is being written. */ #ifdef BUFSIZ |