diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-16 06:01:40 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-16 06:01:40 +0000 |
commit | 56f6686bd2c57f15a5c6e58423f23550ce59df29 (patch) | |
tree | da5d599de3dc978c1a27abae97ff1176e7f941fd /gcc/sdbout.c | |
parent | ff5decbb58fc6dbc921423e4b5e6aee084eebe81 (diff) | |
download | gcc-56f6686bd2c57f15a5c6e58423f23550ce59df29.tar.gz |
* output.h (sdb_begin_function_line): Restore as an extern
variable.
* sdbout.c (sdb_begin_function_line): Make extern.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44030 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 1faffbede39..0738ca3489e 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -80,7 +80,7 @@ AT&T C compiler. From the example below I would conclude the following: /* Line number of beginning of current function, minus one. Negative means not in a function or not using sdb. */ -static int sdb_begin_function_line = -1; +int sdb_begin_function_line = -1; /* Counter to generate unique "names" for nameless struct members. */ |