diff options
author | Jeff Law <law@redhat.com> | 1994-04-19 16:47:30 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-04-19 16:47:30 +0000 |
commit | d782a99583efc215afee68594c0edfe869841dcd (patch) | |
tree | 0e84a5bb5609a5daa04907647ee748866abf6f42 /gdb | |
parent | 19990560be953e5ba6514ab978f05d485d20f872 (diff) | |
download | gdb-d782a99583efc215afee68594c0edfe869841dcd.zip gdb-d782a99583efc215afee68594c0edfe869841dcd.tar.gz gdb-d782a99583efc215afee68594c0edfe869841dcd.tar.bz2 |
* hppa-tdep.c (internalize_unwind_info): Delete unused indexp
argument.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/hppa-tdep.c | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2535c50..53e8cd9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 19 09:46:05 1994 Jeffrey A. Law (law@snake.cs.utah.edu) + + * hppa-tdep.c (internalize_unwind_info): Delete unused indexp + argument. + Mon Apr 18 13:18:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * dbxread.c (read_dbx_dynamic_symtab): Relocate BFD symbols by diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index a677837..b55f40f 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -74,7 +74,7 @@ static void read_unwind_info PARAMS ((struct objfile *)); static void internalize_unwinds PARAMS ((struct objfile *, struct unwind_table_entry *, asection *, unsigned int, - unsigned int, unsigned int *)); + unsigned int)); /* Routines to extract various sized constants out of hppa @@ -274,12 +274,11 @@ compare_unwind_entries (a, b) } static void -internalize_unwinds (objfile, table, section, entries, size, indexp) +internalize_unwinds (objfile, table, section, entries, size) struct objfile *objfile; struct unwind_table_entry *table; asection *section; unsigned int entries, size; - unsigned int *indexp; { /* We will read the unwind entries into temporary memory, then fill in the actual unwind table. */ |