summaryrefslogtreecommitdiff
path: root/gcc/config/mips/mips-5.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/mips/mips-5.h')
-rw-r--r--gcc/config/mips/mips-5.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips-5.h b/gcc/config/mips/mips-5.h
index f8b0941b035..225297d407e 100644
--- a/gcc/config/mips/mips-5.h
+++ b/gcc/config/mips/mips-5.h
@@ -34,9 +34,9 @@ Boston, MA 02111-1307, USA. */
#undef ASM_OUTPUT_ASCII
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \
do { \
- unsigned char *s; \
+ const unsigned char *s; \
int i; \
- for (i = 0, s = (unsigned char *)(PTR); i < (LEN); s++, i++) \
+ for (i = 0, s = (const unsigned char *)(PTR); i < (LEN); s++, i++) \
{ \
if ((i % 8) == 0) \
fputs ("\n\t.byte\t", (FILE)); \