gas: sframe: use ATTRIBUTE_UNUSED consistently
authorIndu Bhagat <indu.bhagat@oracle.com>
Wed, 19 Apr 2023 21:11:56 +0000 (14:11 -0700)
committerIndu Bhagat <indu.bhagat@oracle.com>
Wed, 19 Apr 2023 21:37:23 +0000 (14:37 -0700)
gas/
* gen-sframe.c (sframe_set_version): Use ATTRIBUTE_UNUSED
consistently.
(output_sframe): Likewise.
(sframe_set_fre_info): Remove the usage of ATTRIBUTE_UNUSED.

gas/gen-sframe.c

index c5470596d14158cc64a9a2df26a88d757516b705..9e6a9d16a6423536eb60d68a754e4db11100b1be 100644 (file)
@@ -276,7 +276,7 @@ sframe_v1_set_func_info (unsigned int fde_type, unsigned int fre_type,
 /* SFrame version specific operations setup.  */
 
 static void
-sframe_set_version (uint32_t sframe_version __attribute__((unused)))
+sframe_set_version (uint32_t sframe_version ATTRIBUTE_UNUSED)
 {
   sframe_ver_ops.format_version = SFRAME_VERSION_1;
 
@@ -297,7 +297,7 @@ sframe_set_fre_info (unsigned int base_reg, unsigned int num_offsets,
 
 /* SFrame set func info. */
 
-ATTRIBUTE_UNUSED static unsigned char
+static unsigned char
 sframe_set_func_info (unsigned int fde_type, unsigned int fre_type,
                      unsigned int pauth_key)
 {
@@ -1366,7 +1366,7 @@ output_sframe (segT sframe_seg)
 #else  /*  support_sframe_p  */
 
 void
-output_sframe (segT sframe_seg __attribute__((unused)))
+output_sframe (segT sframe_seg ATTRIBUTE_UNUSED)
 {
 }