aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde+binutils@tbsaunde.org>2016-02-19 12:03:08 +0000
committerNick Clifton <nickc@redhat.com>2016-02-19 12:03:08 +0000
commitcd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053 (patch)
treec008de58dba89ed07c357a54f7e2d9182482d564 /gas/read.c
parentf4583255d5a16b76c249e3c28ab9c8dd9e7a110e (diff)
downloadgdb-cd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053.zip
gdb-cd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053.tar.gz
gdb-cd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053.tar.bz2
Add const to various variables in the gas sources.
* symbols.c (decode_local_label_name): Make type a const char *. * listing.c (print_source): Make type of p const char *. (print_line): Make type of string const char *. (buffer_line): Return const char *. (title): Make type const char *. (subtitle): Likewise. (listing_listing): Make type of p const char *. * messages.c (as_internal_value_out_of_range): Make type of prefix const char *. * stabs.c (s_stab_generic): make type of stab_secname, stabstr_secname and string const char *. * read.c (_bfd_rel): Make type of name const char *. * app.c (out_string): Change type to const char *. (struct app_save::out_string): Likewise.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gas/read.c b/gas/read.c
index f8fff78..22da1df 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -4050,10 +4050,11 @@ s_reloc (int ignore ATTRIBUTE_UNUSED)
char *r_name;
int c;
struct reloc_list *reloc;
- struct _bfd_rel { char *name; bfd_reloc_code_real_type code; };
- static struct _bfd_rel bfd_relocs[] = {
+ struct _bfd_rel { const char * name; bfd_reloc_code_real_type code; };
+ static struct _bfd_rel bfd_relocs[] =
+ {
{ "NONE", BFD_RELOC_NONE },
- { "8", BFD_RELOC_8 },
+ { "8", BFD_RELOC_8 },
{ "16", BFD_RELOC_16 },
{ "32", BFD_RELOC_32 },
{ "64", BFD_RELOC_64 }