diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-11-18 11:56:51 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-11-28 00:03:03 +0000 |
commit | 955ff7fcf8ddc90200819a184380c64c27b76e91 (patch) | |
tree | fa76f5b14b14fb800876f84ed62b11b55c54b9ac /binutils/ChangeLog | |
parent | d9acf70759a258bf674cef91ae9289e9c7ce2428 (diff) | |
download | gdb-955ff7fcf8ddc90200819a184380c64c27b76e91.zip gdb-955ff7fcf8ddc90200819a184380c64c27b76e91.tar.gz gdb-955ff7fcf8ddc90200819a184380c64c27b76e91.tar.bz2 |
binutils: Rename init_dwarf_regnames
As part of a process to change how dwarf.c figures out the correct
name for a register I wanted to clean up how we initialise the
register name tracking state.
As part of this I rename init_dwarf_regnames to
init_dwarf_regnames_by_elf_machine_code, later commits will add a
different entry point to initialise the register name state.
There should be no user visible changes after this commit.
binutils/ChangeLog:
* dwarf.c (init_dwarf_regnames): Renamed to...
(init_dwarf_regnames_by_elf_machine_code): ...this.
* dwarf.h (init_dwarf_regnames): Renamed to...
(init_dwarf_regnames_by_elf_machine_code): ...this.
* readelf.c (process_file_header): Update call to use new name.
Change-Id: Ic8d2ef5fb62a8590ecd8cbb7e6258e11c6263594
Diffstat (limited to 'binutils/ChangeLog')
-rw-r--r-- | binutils/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f833c14..3aba2f2 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,13 @@ 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com> + * dwarf.c (init_dwarf_regnames): Renamed to... + (init_dwarf_regnames_by_elf_machine_code): ...this. + * dwarf.h (init_dwarf_regnames): Renamed to... + (init_dwarf_regnames_by_elf_machine_code): ...this. + * readelf.c (process_file_header): Update call to use new name. + +2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com> + * dwarf.c (frame_need_space): Compare dwarf_regnames_count against 0, and only warn about large numbers of registers if the number is more than the dwarf_regnames_count. |