diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-12-12 21:21:10 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-12-12 21:21:10 +0000 |
commit | c676d8274d8cea8f3eb8a35ef8def259f82b723d (patch) | |
tree | 3480d6b0b41251b43c49673d4a5d03080d772699 /gdb/somread.c | |
parent | 746d1df4a9f64da38da324be849beb5fd389135b (diff) | |
download | gdb-c676d8274d8cea8f3eb8a35ef8def259f82b723d.zip gdb-c676d8274d8cea8f3eb8a35ef8def259f82b723d.tar.gz gdb-c676d8274d8cea8f3eb8a35ef8def259f82b723d.tar.bz2 |
* f-lang.c: Remove duplicate declaration of
builtin_type_f_integer, and only include it in the f_builtin_types
once.
* somread.c (som_symfile_read): Just assign to objfile->obj_private,
not OBJ_UNWIND_INFO. Assigning to a cast is a GCC-ism which
the HP compiler doesn't like.
Diffstat (limited to 'gdb/somread.c')
-rw-r--r-- | gdb/somread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/somread.c b/gdb/somread.c index d6d877f..afb7642 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -349,7 +349,7 @@ som_symfile_read (objfile, section_offsets, mainline) install_minimal_symbols (objfile); /* Force hppa-tdep.c to re-read the unwind descriptors. */ - OBJ_UNWIND_INFO (objfile) = NULL; + objfile->obj_private = NULL; do_cleanups (back_to); } |