gas: S_GET_{NAME,SEGMENT}() don't alter their input symbol
authorJan Beulich <jbeulich@suse.com>
Wed, 8 Nov 2023 08:29:39 +0000 (09:29 +0100)
committerJan Beulich <jbeulich@suse.com>
Wed, 8 Nov 2023 08:29:39 +0000 (09:29 +0100)
Make their parameters pointer-to-const, thus allowing callers to also be
const-correct where possible.

gas/symbols.c
gas/symbols.h

index 45e46ed39b7bb351bb199092081122ace3ab18bf..b07ed244142f38888a174c62a917cdbcd0e9116f 100644 (file)
@@ -2484,13 +2484,13 @@ S_IS_FORWARD_REF (const symbolS *s)
 }
 
 const char *
-S_GET_NAME (symbolS *s)
+S_GET_NAME (const symbolS *s)
 {
   return s->name;
 }
 
 segT
-S_GET_SEGMENT (symbolS *s)
+S_GET_SEGMENT (const symbolS *s)
 {
   if (s->flags.local_symbol)
     return ((struct local_symbol *) s)->section;
index 46425c97d79aeab26d55eb24669c139611900692..55fae25b99ff227a51b9a58bc9ac623b2dde8dd3 100644 (file)
@@ -109,8 +109,8 @@ extern int S_IS_STABD (symbolS *);
 extern int S_CAN_BE_REDEFINED (const symbolS *);
 extern int S_IS_VOLATILE (const symbolS *);
 extern int S_IS_FORWARD_REF (const symbolS *);
-extern const char *S_GET_NAME (symbolS *);
-extern segT S_GET_SEGMENT (symbolS *);
+extern const char *S_GET_NAME (const symbolS *);
+extern segT S_GET_SEGMENT (const symbolS *);
 extern void S_SET_SEGMENT (symbolS *, segT);
 extern void S_SET_EXTERNAL (symbolS *);
 extern void S_SET_NAME (symbolS *, const char *);