OSDN Git Service

2007-08-05 Andrew Pinski <andrew_pinski@playstation.sony.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / inline-23.c
index 171cf62..55bd72a 100644 (file)
@@ -2,16 +2,17 @@
 /* { 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,
-unsigned long addr)
+ptrdiff_t addr)
 {
  __check_printsym_format(fmt, "");
 }
 void do_initcalls(void **call)
 {
-   print_symbol(": %s()", (unsigned long) *call);
+   print_symbol(": %s()", (ptrdiff_t) *call);
 }