sim: ppc: replace local UNUSED macros with common one
authorMike Frysinger <vapier@gentoo.org>
Wed, 16 Jun 2021 00:38:45 +0000 (20:38 -0400)
committerMike Frysinger <vapier@gentoo.org>
Wed, 16 Jun 2021 05:08:43 +0000 (01:08 -0400)
Drop local UNUSED macro with the common ansidecl.h ATTRIBUTE_UNUSED define.

sim/ppc/ChangeLog
sim/ppc/basics.h
sim/ppc/gen-icache.c
sim/ppc/idecode_expression.h
sim/ppc/inline.h

index 3f4fd91a86578536fee45097eb26b3552a7fa290..4f54f77273bd15d2b45a1492dc94b77f741fa7a1 100644 (file)
@@ -1,3 +1,11 @@
+2021-06-16  Mike Frysinger  <vapier@gentoo.org>
+
+       * basics.h (UNUSED): Delete.
+       * gen-icache.c (print_icache_extraction): Change UNUSED to
+       ATTRIBUTE_UNUSED.
+       * idecode_expression.h: Likewise.  Include ansidecl.h.
+       * inline.h: Likewise.
+
 2021-06-16  Mike Frysinger  <vapier@gentoo.org>
 
        * basics.h: Delete CONCAT* and XCONCAT* macros.
index d88bcef7a753649b50270f72191389a6f91c90f2..a6a35ca688adfd5715409731d505f920f69f419d 100644 (file)
@@ -95,16 +95,6 @@ typedef enum {
 #endif
 #endif
 
-#if !defined (UNUSED)
-#if (!defined(__GNUC__) \
-     || (__GNUC__ < 2) \
-     || (__GNUC__ == 2 && __GNUC_MINOR__ < 7))
-#define UNUSED
-#else
-#define UNUSED __attribute__((__unused__))
-#endif
-#endif
-
 
 /* Basic definitions - ordered so that nothing calls what comes after
    it */
index eb35e94949d6152f590ace20c36330a1b125384b..aa7ea6c9d316342834b832ff24352e297feb09cf 100644 (file)
@@ -112,7 +112,7 @@ print_icache_extraction(lf *file,
   else {
     if (file_name != NULL)
       lf_print__external_reference(file, line_nr, file_name);
-    lf_printf(file, "%s const %s UNUSED = ",
+    lf_printf(file, "%s const %s ATTRIBUTE_UNUSED = ",
              entry_type == NULL ? "unsigned" : entry_type,
              entry_name);
   }
index 13f6020daadc845ed36ac79923ebb17409f1be6c..28d39a75ce6a5fbcb0d926e79e4282f5c76b4e2c 100644 (file)
@@ -17,6 +17,8 @@
  
     */
 
+#include "ansidecl.h"
+
 /* Additional, and optional expressions.  */
 #ifdef WITH_ALTIVEC
 #include "altivec_expression.h"
@@ -314,7 +316,7 @@ do { \
 
 #define FPSCR_BEGIN \
 { \
-  fpscreg old_fpscr UNUSED = FPSCR
+  fpscreg old_fpscr ATTRIBUTE_UNUSED = FPSCR
 
 #define FPSCR_END(Rc) { \
   /* always update VX */ \
index 62c4d318e3f7f63028b3e72906b0a42737cbfdee..5fb108f09bba00f4f29e31cf6f375f7a0fb4c00c 100644 (file)
@@ -21,6 +21,7 @@
 #ifndef _INLINE_H_
 #define _INLINE_H_
 
+#include "ansidecl.h"
 
 #define STATIC(TYPE) static TYPE
 
 
 #if !defined(_SIM_ENDIAN_C_) && (SIM_ENDIAN_INLINE & INCLUDE_MODULE)
 # if (SIM_ENDIAN_INLINE & INLINE_MODULE)
-#  define INLINE_PSIM_ENDIAN(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_PSIM_ENDIAN(TYPE) UNUSED static TYPE
+#  define INLINE_PSIM_ENDIAN(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_PSIM_ENDIAN(TYPE) ATTRIBUTE_UNUSED static TYPE
 # else
-#  define INLINE_PSIM_ENDIAN(TYPE) UNUSED static TYPE
-#  define EXTERN_PSIM_ENDIAN(TYPE) UNUSED static TYPE
+#  define INLINE_PSIM_ENDIAN(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_PSIM_ENDIAN(TYPE) ATTRIBUTE_UNUSED static TYPE
 # endif
 #else
 # define INLINE_PSIM_ENDIAN(TYPE) TYPE
 
 #if !defined(_BITS_C_) && (BITS_INLINE & INCLUDE_MODULE)
 # if (BITS_INLINE & INLINE_MODULE)
-#  define INLINE_BITS(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_BITS(TYPE) UNUSED static TYPE
+#  define INLINE_BITS(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_BITS(TYPE) ATTRIBUTE_UNUSED static TYPE
 # else
-#  define INLINE_BITS(TYPE) UNUSED static TYPE
-#  define EXTERN_BITS(TYPE) UNUSED static TYPE
+#  define INLINE_BITS(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_BITS(TYPE) ATTRIBUTE_UNUSED static TYPE
 # endif
 #else
 # define INLINE_BITS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_CORE_C_) && (CORE_INLINE & INCLUDE_MODULE)
 # if (CORE_INLINE & INLINE_MODULE)
-#  define INLINE_CORE(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_CORE(TYPE) UNUSED static TYPE
+#  define INLINE_CORE(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_CORE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_CORE(TYPE) UNUSED static TYPE
-#  define EXTERN_CORE(TYPE) UNUSED static TYPE
+#  define INLINE_CORE(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_CORE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_CORE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_VM_C_) && (VM_INLINE & INCLUDE_MODULE)
 # if (VM_INLINE & INLINE_MODULE)
-#  define INLINE_VM(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_VM(TYPE) UNUSED static TYPE
+#  define INLINE_VM(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_VM(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_VM(TYPE) UNUSED static TYPE
-#  define EXTERN_VM(TYPE) UNUSED static TYPE
+#  define INLINE_VM(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_VM(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_VM(TYPE) TYPE
 
 #if !defined(_CPU_C_) && (CPU_INLINE & INCLUDE_MODULE)
 # if (CPU_INLINE & INLINE_MODULE)
-#  define INLINE_CPU(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_CPU(TYPE) UNUSED static TYPE
+#  define INLINE_CPU(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_CPU(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_CPU(TYPE) UNUSED static TYPE
-#  define EXTERN_CPU(TYPE) UNUSED static TYPE
+#  define INLINE_CPU(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_CPU(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_CPU(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_MODEL_C_) && (MODEL_INLINE & INCLUDE_MODULE)
 # if (MODEL_INLINE & INLINE_MODULE)
-#  define INLINE_MODEL(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_MODEL(TYPE) UNUSED static TYPE
+#  define INLINE_MODEL(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_MODEL(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_MODEL(TYPE) UNUSED static TYPE
-#  define EXTERN_MODEL(TYPE) UNUSED static TYPE
+#  define INLINE_MODEL(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_MODEL(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_MODEL(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_EVENTS_C_) && (EVENTS_INLINE & INCLUDE_MODULE)
 # if (EVENTS_INLINE & INLINE_MODULE)
-#  define INLINE_EVENTS(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_EVENTS(TYPE) UNUSED static TYPE
+#  define INLINE_EVENTS(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_EVENTS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_EVENTS(TYPE) UNUSED static TYPE
-#  define EXTERN_EVENTS(TYPE) UNUSED static TYPE
+#  define INLINE_EVENTS(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_EVENTS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_EVENTS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_MON_C_) && (MON_INLINE & INCLUDE_MODULE)
 # if (MON_INLINE & INLINE_MODULE)
-#  define INLINE_MON(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_MON(TYPE) UNUSED static TYPE
+#  define INLINE_MON(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_MON(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_MON(TYPE) UNUSED static TYPE
-#  define EXTERN_MON(TYPE) UNUSED static TYPE
+#  define INLINE_MON(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_MON(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_MON(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_REGISTERS_C_) && (REGISTERS_INLINE & INCLUDE_MODULE)
 # if (REGISTERS_INLINE & INLINE_MODULE)
-#  define INLINE_REGISTERS(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_REGISTERS(TYPE) UNUSED static TYPE
+#  define INLINE_REGISTERS(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_REGISTERS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_REGISTERS(TYPE) UNUSED static TYPE
-#  define EXTERN_REGISTERS(TYPE) UNUSED static TYPE
+#  define INLINE_REGISTERS(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_REGISTERS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_REGISTERS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_INTERRUPTS_C_) && (INTERRUPTS_INLINE & INCLUDE_MODULE)
 # if (INTERRUPTS_INLINE & INLINE_MODULE)
-#  define INLINE_INTERRUPTS(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_INTERRUPTS(TYPE) UNUSED static TYPE
+#  define INLINE_INTERRUPTS(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_INTERRUPTS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_INTERRUPTS(TYPE) UNUSED static TYPE
-#  define EXTERN_INTERRUPTS(TYPE) UNUSED static TYPE
+#  define INLINE_INTERRUPTS(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_INTERRUPTS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_INTERRUPTS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_DEVICE_C_) && (DEVICE_INLINE & INCLUDE_MODULE)
 # if (DEVICE_INLINE & INLINE_MODULE)
-#  define INLINE_DEVICE(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_DEVICE(TYPE) UNUSED static TYPE
+#  define INLINE_DEVICE(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_DEVICE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_DEVICE(TYPE) UNUSED static TYPE
-#  define EXTERN_DEVICE(TYPE) UNUSED static TYPE
+#  define INLINE_DEVICE(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_DEVICE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_DEVICE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_TREE_C_) && (TREE_INLINE & INCLUDE_MODULE)
 # if (TREE_INLINE & INLINE_MODULE)
-#  define INLINE_TREE(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_TREE(TYPE) UNUSED static TYPE
+#  define INLINE_TREE(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_TREE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_TREE(TYPE) UNUSED static TYPE
-#  define EXTERN_TREE(TYPE) UNUSED static TYPE
+#  define INLINE_TREE(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_TREE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_TREE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_SPREG_C_) && (SPREG_INLINE & INCLUDE_MODULE)
 # if (SPREG_INLINE & INLINE_MODULE)
-#  define INLINE_SPREG(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_SPREG(TYPE) UNUSED static TYPE
+#  define INLINE_SPREG(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_SPREG(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_SPREG(TYPE) UNUSED static TYPE
-#  define EXTERN_SPREG(TYPE) UNUSED static TYPE
+#  define INLINE_SPREG(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_SPREG(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_SPREG(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_SEMANTICS_C_) && (SEMANTICS_INLINE & INCLUDE_MODULE)
 # if (SEMANTICS_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_SEMANTICS(TYPE) UNUSED static INLINE TYPE
-#  define PSIM_EXTERN_SEMANTICS(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_SEMANTICS(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define PSIM_EXTERN_SEMANTICS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define PSIM_INLINE_SEMANTICS(TYPE) UNUSED static TYPE
-#  define PSIM_EXTERN_SEMANTICS(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_SEMANTICS(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define PSIM_EXTERN_SEMANTICS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_SEMANTICS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_IDECODE_C_) && (IDECODE_INLINE & INCLUDE_MODULE)
 # if (IDECODE_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_IDECODE(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_IDECODE(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_IDECODE(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_IDECODE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define PSIM_INLINE_IDECODE(TYPE) UNUSED static TYPE
-#  define EXTERN_IDECODE(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_IDECODE(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_IDECODE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_IDECODE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_ICACHE_C_) && (ICACHE_INLINE & INCLUDE_MODULE)
 # if (ICACHE_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_ICACHE(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_ICACHE(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_ICACHE(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_ICACHE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define PSIM_INLINE_ICACHE(TYPE) UNUSED static TYPE
-#  define EXTERN_ICACHE(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_ICACHE(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_ICACHE(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_ICACHE(TYPE) TYPE
 
 #if !defined(_SUPPORT_C_) && (SUPPORT_INLINE & INCLUDE_MODULE)
 # if (SUPPORT_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_SUPPORT(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_SUPPORT(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_SUPPORT(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_SUPPORT(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define PSIM_INLINE_SUPPORT(TYPE) UNUSED static TYPE
-#  define EXTERN_SUPPORT(TYPE) UNUSED static TYPE
+#  define PSIM_INLINE_SUPPORT(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_SUPPORT(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_SUPPORT(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_OPTIONS_C_) && (OPTIONS_INLINE & INCLUDE_MODULE)
 # if (OPTIONS_INLINE & INLINE_MODULE)
-#  define INLINE_OPTIONS(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_OPTIONS(TYPE) UNUSED static TYPE
+#  define INLINE_OPTIONS(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_OPTIONS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_OPTIONS(TYPE) UNUSED static TYPE
-#  define EXTERN_OPTIONS(TYPE) UNUSED static TYPE
+#  define INLINE_OPTIONS(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_OPTIONS(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_OPTIONS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_OS_EMUL_C_) && (OS_EMUL_INLINE & INCLUDE_MODULE)
 # if (OS_EMUL_INLINE & INLINE_MODULE)
-#  define INLINE_OS_EMUL(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_OS_EMUL(TYPE) UNUSED static TYPE
+#  define INLINE_OS_EMUL(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_OS_EMUL(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_OS_EMUL(TYPE) UNUSED static TYPE
-#  define EXTERN_OS_EMUL(TYPE) UNUSED static TYPE
+#  define INLINE_OS_EMUL(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_OS_EMUL(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_OS_EMUL(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_PSIM_C_) && (PSIM_INLINE & INCLUDE_MODULE)
 # if (PSIM_INLINE & INLINE_MODULE)
-#  define INLINE_PSIM(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_PSIM(TYPE) UNUSED static TYPE
+#  define INLINE_PSIM(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_PSIM(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_PSIM(TYPE) UNUSED static TYPE
-#  define EXTERN_PSIM(TYPE) UNUSED static TYPE
+#  define INLINE_PSIM(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_PSIM(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_PSIM(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_CAP_C_) && (CAP_INLINE & INCLUDE_MODULE)
 # if (CAP_INLINE & INLINE_MODULE)
-#  define INLINE_CAP(TYPE) UNUSED static INLINE TYPE
-#  define EXTERN_CAP(TYPE) UNUSED static TYPE
+#  define INLINE_CAP(TYPE) ATTRIBUTE_UNUSED static INLINE TYPE
+#  define EXTERN_CAP(TYPE) ATTRIBUTE_UNUSED static TYPE
 #else
-#  define INLINE_CAP(TYPE) UNUSED static TYPE
-#  define EXTERN_CAP(TYPE) UNUSED static TYPE
+#  define INLINE_CAP(TYPE) ATTRIBUTE_UNUSED static TYPE
+#  define EXTERN_CAP(TYPE) ATTRIBUTE_UNUSED static TYPE
 #endif
 #else
 # define INLINE_CAP(TYPE) TYPE