From 2e0dd623cd843a28beb1a83d0e0307166b0600d5 Mon Sep 17 00:00:00 2001 From: John Carr Date: Sun, 8 Feb 1998 12:26:43 +0000 Subject: bitmap.c (bitmap_debug_file): HOST_PTR_PRINTF converts a pointer, not a HOST_WIDE_INT. * bitmap.c (bitmap_debug_file): HOST_PTR_PRINTF converts a pointer, not a HOST_WIDE_INT. * calls.c (expand_call): Change test of expand_inline_function return value to stop compiler warning. * genattrtab.c (RTL_HASH): Cast pointer to long, not HOST_WIDE_INT. From-SVN: r17777 --- gcc/calls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/calls.c') diff --git a/gcc/calls.c b/gcc/calls.c index 3a4244a..2278e88 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -1,5 +1,5 @@ /* Convert function calls to rtl insns, for GNU C compiler. - Copyright (C) 1989, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. + Copyright (C) 1989, 92-97, 1998 Free Software Foundation, Inc. This file is part of GNU CC. @@ -730,7 +730,7 @@ expand_call (exp, target, ignore) structure_value_addr); /* If inlining succeeded, return. */ - if ((HOST_WIDE_INT) temp != -1) + if (temp != (rtx) (HOST_WIDE_INT) -1) { #ifdef ACCUMULATE_OUTGOING_ARGS /* If the outgoing argument list must be preserved, push -- cgit v1.1