SH64/GAS: Fix a -Wwrite-strings build failure
authorMaciej W. Rozycki <macro@imgtec.com>
Sun, 15 May 2016 22:14:52 +0000 (23:14 +0100)
committerMaciej W. Rozycki <macro@imgtec.com>
Sun, 15 May 2016 22:23:47 +0000 (23:23 +0100)
Fix a commit 6757cf57697d ("enable -Wwrite-strings for gas") regression.

gas/
* config/tc-sh64.c (shmedia_check_limits): Constify `msg'.

gas/ChangeLog
gas/config/tc-sh64.c

index 7ecec77..d5adac6 100644 (file)
@@ -1,3 +1,7 @@
+2016-05-15  Maciej W. Rozycki  <macro@imgtec.com>
+
+       * config/tc-sh64.c (shmedia_check_limits): Constify `msg'.
+
 2016-05-13  Peter Bergner <bergner@vnet.ibm.com>
 
        * testsuite/gas/ppc/power9.d <xxspltib>: Add additional operand tests.
index 294f96b..4de044c 100644 (file)
@@ -1473,7 +1473,7 @@ shmedia_check_limits (offsetT *valp, bfd_reloc_code_real_type reloc,
 {
   offsetT val = *valp;
 
-  char *msg = NULL;
+  const char *msg = NULL;
 
   switch (reloc)
     {