summaryrefslogtreecommitdiff
path: root/gdb/dbxread.c
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-02-26 21:41:18 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-02-26 21:41:18 +0000
commit3c77da2cee2e88518f4a4a1770e8eac9ed7782be (patch)
tree9c76a3a32c542bd5cd20dbfae94dc7db5d4e40b1 /gdb/dbxread.c
parentf02dc7bd7b532d92896e5a0f73dbd9dafaa03097 (diff)
downloadgdb-3c77da2cee2e88518f4a4a1770e8eac9ed7782be.tar.gz
2003-02-26 Jeff Johnston <jjohnstn@redhat.com>
From Elena Zannoni <ezannoni@redhat.com> * dbxread.c (process_one_symbol): Only record line 0 if one or more sline entries have been seen for the function.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r--gdb/dbxread.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c
index 11d038e0c78..d8135539b16 100644
--- a/gdb/dbxread.c
+++ b/gdb/dbxread.c
@@ -2831,7 +2831,13 @@ process_one_symbol (int type, int desc, CORE_ADDR valu, char *name,
break;
}
- record_line (current_subfile, 0, last_function_start + valu);
+ /* The following check is added before recording line 0 at
+ end of function so as to handle hand-generated stabs
+ which may have an N_FUN stabs at the end of the function, but
+ no N_SLINE stabs. */
+ if (sline_found_in_function)
+ record_line (current_subfile, 0, last_function_start + valu);
+
within_function = 0;
new = pop_context ();