From: Matthieu Longo Date: Fri, 7 Jun 2024 15:59:57 +0000 (+0100) Subject: aarch64: constify unchanged char* arguments X-Git-Tag: gdb-16-branchpoint~510 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a924330947ff168230a32d5abf0613ec6f680af7;p=thirdparty%2Fbinutils-gdb.git aarch64: constify unchanged char* arguments --- diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index 4970acee19b..d272a5735fe 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -6245,7 +6245,7 @@ lookup_mnemonic (const char *start, int len) (if any) and END points to the end of the mnemonic. */ static templates * -opcode_lookup (char *base, char *dot, char *end) +opcode_lookup (const char *base, const char *dot, const char *end) { const aarch64_cond *cond; char condname[16];