diff options
author | Joel Brobecker <brobecker@gnat.com> | 2003-01-10 15:39:10 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2003-01-10 15:39:10 +0000 |
commit | 3269bcfa1ceb437ea6a0c4cd90c7f28ca2c2454c (patch) | |
tree | 56340864597f8c0d12f57b861ddd7714999d104b /gdb | |
parent | 45fdcabea2dfc25e125d647e3c9e24aaaee70e5c (diff) | |
download | fsf-binutils-gdb-3269bcfa1ceb437ea6a0c4cd90c7f28ca2c2454c.zip fsf-binutils-gdb-3269bcfa1ceb437ea6a0c4cd90c7f28ca2c2454c.tar.gz fsf-binutils-gdb-3269bcfa1ceb437ea6a0c4cd90c7f28ca2c2454c.tar.bz2 |
* hpread.c (hpread_process_one_debug_symbol): Fix a small
compilation error in the previous revision.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/hpread.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1f26373..7ab960e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-01-10 J. Brobecker <brobecker@gnat.com> + + * hpread.c (hpread_process_one_debug_symbol): Fix a small + compilation error in the previous revision. + 2003-01-09 David Carlton <carlton@math.stanford.edu> * linespec.c: Update copyright. diff --git a/gdb/hpread.c b/gdb/hpread.c index 0323f02..3916060 100644 --- a/gdb/hpread.c +++ b/gdb/hpread.c @@ -5244,8 +5244,8 @@ hpread_process_one_debug_symbol (union dnttentry *dn_bufp, char *name, /* All functions in C++ have prototypes. For C we don't have enough information in the debug info. */ - if (SYMBOL_LANGUAGE (s) == language_cplus) - TYPE_FLAGS (SYMBOL_TYPE (s)) |= TYPE_FLAG_PROTOTYPED; + if (SYMBOL_LANGUAGE (sym) == language_cplus) + TYPE_FLAGS (SYMBOL_TYPE (sym)) |= TYPE_FLAG_PROTOTYPED; /* The "SYMBOL_NAME" field is expected to be the mangled name * (if any), which we get from the "alias" field of the SOM record |