diff options
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 862454d..4657ce2 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -12693,8 +12693,8 @@ macro (struct mips_cl_insn *ip, char *str) case M_DROL_I: { unsigned int rot; - char *l; - char *rr; + const char *l; + const char *rr; rot = imm_expr.X_add_number & 0x3f; if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) @@ -12773,8 +12773,8 @@ macro (struct mips_cl_insn *ip, char *str) case M_DROR_I: { unsigned int rot; - char *l; - char *rr; + const char *l; + const char *rr; rot = imm_expr.X_add_number & 0x3f; if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |