make score build again
authorTrevor Saunders <tbsaunde+binutils@tbsaunde.org>
Sat, 2 Apr 2016 20:30:13 +0000 (16:30 -0400)
committerTrevor Saunders <tbsaunde+binutils@tbsaunde.org>
Sun, 3 Apr 2016 23:46:09 +0000 (19:46 -0400)
It needs a few more things to be const now.

gas/ChangeLog:

2016-04-03  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>

* config/tc-score.c (s3_gen_reloc): Add const qualifiers.
* config/tc-score7.c (s7_gen_reloc): Likewise.

gas/config/tc-score.c
gas/config/tc-score7.c

index 8ea10844721b3f2cbada9910481b16f866e2e5d3..a509da7c35a5dffab06e2fad487c3a0d84178a23 100644 (file)
@@ -7398,7 +7398,7 @@ s3_gen_reloc (asection * section ATTRIBUTE_UNUSED, fixS * fixp)
   static arelent *retval[MAX_RELOC_EXPANSION + 1];  /* MAX_RELOC_EXPANSION equals 2.  */
   arelent *reloc;
   bfd_reloc_code_real_type code;
-  char *type;
+  const char *type;
 
   reloc = retval[0] = xmalloc (sizeof (arelent));
   retval[1] = NULL;
index 97dfea2a41f1b11ae217de96ddc8378d8140a142..d6a546d36fd1a3a4a06d8843a3a908c4f7a3094a 100644 (file)
@@ -6209,7 +6209,7 @@ s7_operand (expressionS * exp)
    the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
    the byte sequence 99 99 f1 3f 9a 99 99 99.  */
 
-static char *
+static const char *
 s7_atof (int type, char *litP, int *sizeP)
 {
   int prec;
@@ -6875,7 +6875,7 @@ s7_gen_reloc (asection * section ATTRIBUTE_UNUSED, fixS * fixp)
   static arelent *retval[MAX_RELOC_EXPANSION + 1];  /* MAX_RELOC_EXPANSION equals 2.  */
   arelent *reloc;
   bfd_reloc_code_real_type code;
-  char *type;
+  const char *type;
 
   reloc = retval[0] = xmalloc (sizeof (arelent));
   retval[1] = NULL;