diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1995-04-01 11:24:43 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1995-04-01 11:24:43 +0000 |
commit | 576c39135f412f8014181e97628e18f8ace275f1 (patch) | |
tree | 3d613d557a61cae22ede004d9141867c6c0a3562 /gdb/partial-stab.h | |
parent | 241b4dff18277873995facbd21ab34c12c1d3c14 (diff) | |
download | gdb-576c39135f412f8014181e97628e18f8ace275f1.zip gdb-576c39135f412f8014181e97628e18f8ace275f1.tar.gz gdb-576c39135f412f8014181e97628e18f8ace275f1.tar.bz2 |
* dbxread.c (process_one_symbol) [SOFUN_ADDRESS_MAYBE_MISSING]:
Handle relocated symbol address.
* partial-stab.h, case N_SO, SOFUN_ADDRESS_MAYBE_MISSING:
Do not relocate a zero address.
Diffstat (limited to 'gdb/partial-stab.h')
-rw-r--r-- | gdb/partial-stab.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/partial-stab.h b/gdb/partial-stab.h index f1ab991..38bac24 100644 --- a/gdb/partial-stab.h +++ b/gdb/partial-stab.h @@ -1,5 +1,5 @@ /* Shared code to pre-read a stab (dbx-style), when building a psymtab. - Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 + Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of GDB. @@ -200,6 +200,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ char *p; valu = CUR_SYMBOL_VALUE + ANOFFSET (section_offsets, SECT_OFF_TEXT); +#ifdef SOFUN_ADDRESS_MAYBE_MISSING + /* A zero value is probably an indication for the SunPRO 3.0 + compiler. end_psymtab explicitly tests for zero, so + don't relocate it. */ + if (CUR_SYMBOL_VALUE == 0) + valu = 0; +#endif past_first_source_file = 1; |