Constify arch_type and friends
authorTom Tromey <tom@tromey.com>
Mon, 6 Jun 2016 14:06:15 +0000 (08:06 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 10 Jun 2016 16:10:17 +0000 (10:10 -0600)
commit695bfa52ccf22058e371828c3636a3d74424ec5b
tree7028ec77f5549b675d1333cae0c6e1d0559a1ef6
parent347dc1025db1c0acf616ab6520c3f36448f25e8b
Constify arch_type and friends

While working on the Rust support, I happened to notice that arch_type
and related functions take "char *" arguments, where "const char *"
would be more correct.  This patch fixes this oversight.  Tested by
rebuilding.

2016-06-10  Tom Tromey  <tom@tromey.com>

* gdbtypes.c (arch_type, arch_integer_type, arch_character_type)
(arch_boolean_type, arch_float_type, arch_complex_type)
(arch_flags_type, append_flags_type_field)
(append_flags_type_flag, arch_composite_type)
(append_composite_type_field_raw)
(append_composite_type_field_aligned)
(append_composite_type_field): Make "name" parameter const.
* gdbtypes.h (arch_type, arch_integer_type, arch_character_type)
(arch_boolean_type, arch_float_type, arch_complex_type)
(append_composite_type_field, append_composite_type_field_aligned)
(append_composite_type_field_raw, arch_flags_type)
(append_flags_type_field, append_flags_type_flag): Constify.
gdb/ChangeLog
gdb/gdbtypes.c
gdb/gdbtypes.h