Update comments about removed function

Message ID 20200123145519.197813-1-cbiesinger@chromium.org
State New, archived
Headers

Commit Message

Christian Biesinger Jan. 23, 2020, 2:55 p.m. UTC
  From: Christian Biesinger <cbiesinger@google.com>

regset_from_core_sections doesn't exist anymore; it has been replaced
by the iterate_over_regset_sections gdbarch method.  Update comments
accordingly to not confuse readers.

gdb/ChangeLog:

2020-01-23  Christian Biesinger  <cbiesinger@google.com>

	* aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
	Update comment.
	* aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
	Likewise.
	* arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
	* gdbcore.h (deprecated_add_core_fns): Update comment to point to
	the correct replacement (iterate_over_regset_sections).
	* riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
	Update comment.

Change-Id: I5eea4d18e15edae5d6dfd5d0d6241e5b2ae40daa
---
 gdb/aarch64-fbsd-tdep.c  | 2 +-
 gdb/aarch64-linux-tdep.c | 2 +-
 gdb/arm-fbsd-tdep.c      | 2 +-
 gdb/gdbcore.h            | 3 +--
 gdb/riscv-fbsd-tdep.c    | 2 +-
 5 files changed, 5 insertions(+), 6 deletions(-)
  

Comments

Tom Tromey Jan. 23, 2020, 10:35 p.m. UTC | #1
>>>>> ">" == cbiesinger  <cbiesinger@chromium.org> writes:

>> From: Christian Biesinger <cbiesinger@google.com>
>> regset_from_core_sections doesn't exist anymore; it has been replaced
>> by the iterate_over_regset_sections gdbarch method.  Update comments
>> accordingly to not confuse readers.

>> gdb/ChangeLog:

>> 2020-01-23  Christian Biesinger  <cbiesinger@google.com>

>> 	* aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
>> 	Update comment.
>> 	* aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
>> 	Likewise.
>> 	* arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
>> 	* gdbcore.h (deprecated_add_core_fns): Update comment to point to
>> 	the correct replacement (iterate_over_regset_sections).
>> 	* riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
>> 	Update comment.

Thanks.  I think this one could be considered obvious, but FAOD it is ok.

Tom
  
Terekhov, Mikhail via Gdb-patches Jan. 24, 2020, 11:35 a.m. UTC | #2
On Thu, Jan 23, 2020 at 11:35 PM Tom Tromey <tom@tromey.com> wrote:
>
> >>>>> ">" == cbiesinger  <cbiesinger@chromium.org> writes:
>
> >> From: Christian Biesinger <cbiesinger@google.com>
> >> regset_from_core_sections doesn't exist anymore; it has been replaced
> >> by the iterate_over_regset_sections gdbarch method.  Update comments
> >> accordingly to not confuse readers.
>
> >> gdb/ChangeLog:
>
> >> 2020-01-23  Christian Biesinger  <cbiesinger@google.com>
>
> >>      * aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
> >>      Update comment.
> >>      * aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
> >>      Likewise.
> >>      * arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
> >>      * gdbcore.h (deprecated_add_core_fns): Update comment to point to
> >>      the correct replacement (iterate_over_regset_sections).
> >>      * riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
> >>      Update comment.
>
> Thanks.  I think this one could be considered obvious, but FAOD it is ok.

Thanks, pushed. Will treat similar patches as obvious in the future.

Christian
  

Patch

diff --git a/gdb/aarch64-fbsd-tdep.c b/gdb/aarch64-fbsd-tdep.c
index b923c5c474..0d41198ecd 100644
--- a/gdb/aarch64-fbsd-tdep.c
+++ b/gdb/aarch64-fbsd-tdep.c
@@ -134,7 +134,7 @@  const struct regset aarch64_fbsd_fpregset =
     regcache_supply_regset, regcache_collect_regset
   };
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 aarch64_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
diff --git a/gdb/aarch64-linux-tdep.c b/gdb/aarch64-linux-tdep.c
index 67046c4271..34ba0d87ba 100644
--- a/gdb/aarch64-linux-tdep.c
+++ b/gdb/aarch64-linux-tdep.c
@@ -582,7 +582,7 @@  aarch64_linux_collect_sve_regset (const struct regset *regset,
 			    size - SVE_HEADER_SIZE);
 }
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 aarch64_linux_iterate_over_regset_sections (struct gdbarch *gdbarch,
diff --git a/gdb/arm-fbsd-tdep.c b/gdb/arm-fbsd-tdep.c
index 417a805e67..de94d06c70 100644
--- a/gdb/arm-fbsd-tdep.c
+++ b/gdb/arm-fbsd-tdep.c
@@ -150,7 +150,7 @@  const struct regset arm_fbsd_vfpregset =
     regcache_supply_regset, regcache_collect_regset
   };
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 arm_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
diff --git a/gdb/gdbcore.h b/gdb/gdbcore.h
index 66e81dfe95..0a69d36ad7 100644
--- a/gdb/gdbcore.h
+++ b/gdb/gdbcore.h
@@ -269,8 +269,7 @@  private:
   std::string m_storage;
 };
 
-/* NOTE: cagney/2004-04-05: Replaced by "regset.h" and
-   regset_from_core_section().  */
+/* Replaced by the "iterate_over_regset_sections" gdbarch method.  */
 extern void deprecated_add_core_fns (struct core_fns *cf);
 extern int default_core_sniffer (struct core_fns *cf, bfd * abfd);
 extern int default_check_format (bfd * abfd);
diff --git a/gdb/riscv-fbsd-tdep.c b/gdb/riscv-fbsd-tdep.c
index 8a9295904d..6e0eb2bb78 100644
--- a/gdb/riscv-fbsd-tdep.c
+++ b/gdb/riscv-fbsd-tdep.c
@@ -81,7 +81,7 @@  const struct regset riscv_fbsd_fpregset =
     regcache_supply_regset, regcache_collect_regset
   };
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 riscv_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,