Commit 3c7471ff by Rask Ingemann Lambertsen Committed by Rask Ingemann Lambertsen

* gcc.dg/inline-23.c: Use pointer sized type for cast from pointer.

From-SVN: r126809
parent a2c996f3
2007-07-21 Rask Ingemann Lambertsen <rask@sygehus.dk>
* gcc.dg/inline-23.c: Use pointer sized type for cast from pointer.
2007-07-20 Richard Sandiford <richard@codesourcery.com> 2007-07-20 Richard Sandiford <richard@codesourcery.com>
* gcc.target/mips/mips.exp (is_gp32_flag): Return true for -msmartmips. * gcc.target/mips/mips.exp (is_gp32_flag): Return true for -msmartmips.
...@@ -2,16 +2,17 @@ ...@@ -2,16 +2,17 @@
/* { dg-options "-std=gnu89" } */ /* { dg-options "-std=gnu89" } */
/* Make sure we can inline a varargs function whose variable arguments /* Make sure we can inline a varargs function whose variable arguments
are not used. See PR32493. */ are not used. See PR32493. */
#include <stddef.h>
static inline __attribute__((always_inline)) void __check_printsym_format(const static inline __attribute__((always_inline)) void __check_printsym_format(const
char *fmt, ...) char *fmt, ...)
{ {
} }
static inline __attribute__((always_inline)) void print_symbol(const char *fmt, static inline __attribute__((always_inline)) void print_symbol(const char *fmt,
unsigned long addr) ptrdiff_t addr)
{ {
__check_printsym_format(fmt, ""); __check_printsym_format(fmt, "");
} }
void do_initcalls(void **call) void do_initcalls(void **call)
{ {
print_symbol(": %s()", (unsigned long) *call); print_symbol(": %s()", (ptrdiff_t) *call);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment