From: John David Anglin Date: Fri, 23 Jan 2004 16:43:43 +0000 (+0000) Subject: reload.c (can_reload_into): Add prototype and K&R style function declaration. X-Git-Tag: releases/gcc-3.3.3~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd47dd93e3a651edf45a07ba28557d33ea3b3160;p=thirdparty%2Fgcc.git reload.c (can_reload_into): Add prototype and K&R style function declaration. * reload.c (can_reload_into): Add prototype and K&R style function declaration. From-SVN: r76430 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc3aa77c9eb1..1f4b5de6dc38 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-01-23 John David Anglin + + * reload.c (can_reload_into): Add prototype and K&R style function + declaration. + 2004-01-21 Andreas Jaeger Michael Matz diff --git a/gcc/reload.c b/gcc/reload.c index 8c09fd7ddb90..dc65f94dcdba 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -243,6 +243,7 @@ static int push_secondary_reload PARAMS ((int, rtx, int, int, enum reg_class, static enum reg_class find_valid_class PARAMS ((enum machine_mode, int, unsigned int)); static int reload_inner_reg_of_subreg PARAMS ((rtx, enum machine_mode, int)); +static int can_reload_into PARAMS ((rtx, int, enum machine_mode)); static void push_replacement PARAMS ((rtx *, int, enum machine_mode)); static void dup_replacements PARAMS ((rtx *, rtx *)); static void combine_reloads PARAMS ((void)); @@ -855,7 +856,10 @@ reload_inner_reg_of_subreg (x, mode, output) patterns by register elimination and substituting pseudos without a home by their function-invariant equivalences. */ static int -can_reload_into (rtx in, int regno, enum machine_mode mode) +can_reload_into (in, regno, mode) + rtx in; + int regno; + enum machine_mode mode; { rtx dst, test_insn; int r = 0;