diff options
author | Joel Brobecker <brobecker@adacore.com> | 2017-08-25 19:23:27 -0400 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2017-08-25 20:29:41 -0400 |
commit | 988f6b3dc615173d6d78a76ac26c109b4582da74 (patch) | |
tree | 195bcd3dcb4e8aa217b054f89f8db32683a2e60f /gdb/ChangeLog | |
parent | 5fdda9d6a4c3520f4787d96c4ae293783fe6262a (diff) | |
download | gdb-988f6b3dc615173d6d78a76ac26c109b4582da74.zip gdb-988f6b3dc615173d6d78a76ac26c109b4582da74.tar.gz gdb-988f6b3dc615173d6d78a76ac26c109b4582da74.tar.bz2 |
remove param "dispp" from ada-lang.c::ada_lookup_struct_elt_type
The function is always called with DISPP set to NULL, so there is
no need for this parameter anymore. This patch removes it, and
eliminates some dead code associated to that.
gdb/ChangeLog:
* ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
Update all callers accordingly. Remove all code blocks handling
the case where DISPP is not NULL.
Tested on x86_64-linux, no regression.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ff40216..39ff4ed 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2017-08-25 Joel Brobecker <brobecker@adacore.com> + + * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp". + Update all callers accordingly. Remove all code blocks handling + the case where DISPP is not NULL. + 2017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com> PR symtab/22003 |