URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [inline-23.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-std=gnu89" } */ /* Make sure we can inline a varargs function whose variable arguments are not used. See PR32493. */ #include <stddef.h> static inline __attribute__((always_inline)) void __check_printsym_format(const char *fmt, ...) { } static inline __attribute__((always_inline)) void print_symbol(const char *fmt, ptrdiff_t addr) { __check_printsym_format(fmt, ""); } void do_initcalls(void **call) { print_symbol(": %s()", (ptrdiff_t) *call); }
Go to most recent revision | Compare with Previous | Blame | View Log