aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/inline-23.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.dg/inline-23.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.dg/inline-23.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.dg/inline-23.c b/gcc-4.9/gcc/testsuite/gcc.dg/inline-23.c
new file mode 100644
index 000000000..2829ecbf7
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.dg/inline-23.c
@@ -0,0 +1,21 @@
+/* { 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>
+
+typedef __INTPTR_TYPE__ my_intptr_t;
+
+static inline __attribute__((always_inline)) void __check_printsym_format(const
+char *fmt, ...)
+{
+}
+static inline __attribute__((always_inline)) void print_symbol(const char *fmt,
+my_intptr_t addr)
+{
+ __check_printsym_format(fmt, "");
+}
+void do_initcalls(void **call)
+{
+ print_symbol(": %s()", (my_intptr_t) *call);
+}