1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu89" } */
3 /* Make sure we can inline a varargs function whose variable arguments
4 are not used. See PR32493. */
7 typedef __INTPTR_TYPE__ my_intptr_t
;
9 static inline __attribute__((always_inline
)) void __check_printsym_format(const
13 static inline __attribute__((always_inline
)) void print_symbol(const char *fmt
,
16 __check_printsym_format(fmt
, "");
18 void do_initcalls(void **call
)
20 print_symbol(": %s()", (my_intptr_t
) *call
);