This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Constify some commands in regcache.c


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=4e00131263d4de2e8b7a1d0da7e27e423d94fb52

commit 4e00131263d4de2e8b7a1d0da7e27e423d94fb52
Author: Tom Tromey <tom@tromey.com>
Date:   Tue Sep 12 21:31:41 2017 -0600

    Constify some commands in regcache.c
    
    gdb/ChangeLog
    2017-09-27  Tom Tromey  <tom@tromey.com>
    
    	* regcache.c (regcache_print, maintenance_print_registers)
    	(maintenance_print_raw_registers)
    	(maintenance_print_cooked_registers)
    	(maintenance_print_register_groups)
    	(maintenance_print_remote_registers): Constify.

Diff:
---
 gdb/ChangeLog  |  8 ++++++++
 gdb/regcache.c | 12 ++++++------
 2 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 151d717..cece16a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,13 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+	* regcache.c (regcache_print, maintenance_print_registers)
+	(maintenance_print_raw_registers)
+	(maintenance_print_cooked_registers)
+	(maintenance_print_register_groups)
+	(maintenance_print_remote_registers): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
 	* printcmd.c (map_display_numbers, undisplay_command)
 	(enable_disable_display_command, enable_display_command)
 	(disable_display_command): Constify.
diff --git a/gdb/regcache.c b/gdb/regcache.c
index 96a4947..acec972 100644
--- a/gdb/regcache.c
+++ b/gdb/regcache.c
@@ -1593,7 +1593,7 @@ regcache::dump (ui_file *file, enum regcache_dump_what what_to_dump)
 }
 
 static void
-regcache_print (char *args, enum regcache_dump_what what_to_dump)
+regcache_print (const char *args, enum regcache_dump_what what_to_dump)
 {
   if (args == NULL)
     get_current_regcache ()->dump (gdb_stdout, what_to_dump);
@@ -1608,31 +1608,31 @@ regcache_print (char *args, enum regcache_dump_what what_to_dump)
 }
 
 static void
-maintenance_print_registers (char *args, int from_tty)
+maintenance_print_registers (const char *args, int from_tty)
 {
   regcache_print (args, regcache_dump_none);
 }
 
 static void
-maintenance_print_raw_registers (char *args, int from_tty)
+maintenance_print_raw_registers (const char *args, int from_tty)
 {
   regcache_print (args, regcache_dump_raw);
 }
 
 static void
-maintenance_print_cooked_registers (char *args, int from_tty)
+maintenance_print_cooked_registers (const char *args, int from_tty)
 {
   regcache_print (args, regcache_dump_cooked);
 }
 
 static void
-maintenance_print_register_groups (char *args, int from_tty)
+maintenance_print_register_groups (const char *args, int from_tty)
 {
   regcache_print (args, regcache_dump_groups);
 }
 
 static void
-maintenance_print_remote_registers (char *args, int from_tty)
+maintenance_print_remote_registers (const char *args, int from_tty)
 {
   regcache_print (args, regcache_dump_remote);
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]