diff options
author | John Carr <jfc@mit.edu> | 1998-02-08 12:26:43 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-02-08 05:26:43 -0700 |
commit | 2e0dd623cd843a28beb1a83d0e0307166b0600d5 (patch) | |
tree | b3a9e8a08c931be589091cd8e18d0a6bae74b887 /gcc/calls.c | |
parent | 7bf825d296e1551e8df8e214a810974315db7b02 (diff) | |
download | gcc-2e0dd623cd843a28beb1a83d0e0307166b0600d5.zip gcc-2e0dd623cd843a28beb1a83d0e0307166b0600d5.tar.gz gcc-2e0dd623cd843a28beb1a83d0e0307166b0600d5.tar.bz2 |
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
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |