aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorMatthieu Longo <matthieu.longo@arm.com>2024-06-07 16:59:57 +0100
committerMatthieu Longo <matthieu.longo@arm.com>2024-11-08 11:35:46 +0000
commita924330947ff168230a32d5abf0613ec6f680af7 (patch)
tree486716f9cae82b430d06c72ab285cc01fd586c15 /gas
parentaarch64: make comment clearer about the location (diff)
downloadbinutils-gdb-a924330947ff168230a32d5abf0613ec6f680af7.tar.gz
binutils-gdb-a924330947ff168230a32d5abf0613ec6f680af7.tar.bz2
binutils-gdb-a924330947ff168230a32d5abf0613ec6f680af7.zip
aarch64: constify unchanged char* arguments
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-aarch64.c2
1 files changed, 1 insertions, 1 deletions
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];