]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
reload.c (can_reload_into): Add prototype and K&R style function declaration.
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
Fri, 23 Jan 2004 16:43:43 +0000 (16:43 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Fri, 23 Jan 2004 16:43:43 +0000 (16:43 +0000)
* reload.c (can_reload_into): Add prototype and K&R style function
declaration.

From-SVN: r76430

gcc/ChangeLog
gcc/reload.c

index bc3aa77c9eb1830e80b01d8ab1d1bd45fd9fc191..1f4b5de6dc3865ae7bf75fa8f05e26e4ca582d6e 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-23  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       * reload.c (can_reload_into): Add prototype and K&R style function
+       declaration.
+
 2004-01-21  Andreas Jaeger  <aj@suse.de>
            Michael Matz  <matz@suse.de>
 
index 8c09fd7ddb90fad3fcccfee80a2b7f172ad0050b..dc65f94dcdba3e95cbda8ad2d528dabd9edf3bd7 100644 (file)
@@ -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;