diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2005-06-09 14:23:28 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2005-06-09 14:23:28 +0000 |
commit | 2ffa9a0ce504d59abfa34e2b92d0f3e1aa3f6218 (patch) | |
tree | ff1599cf97ea60e0f64018e57f706551d904aef3 | |
parent | 910fdc79ea9fe5da9cded92bceb7d2f4e7368e43 (diff) | |
download | gcc-2ffa9a0ce504d59abfa34e2b92d0f3e1aa3f6218.zip gcc-2ffa9a0ce504d59abfa34e2b92d0f3e1aa3f6218.tar.gz gcc-2ffa9a0ce504d59abfa34e2b92d0f3e1aa3f6218.tar.bz2 |
rs6000.c: (rs6000_insn_valid_within_doloop): Fix prototype.
2005-06-09 Daniel Berlin <dberlin@dberlin.org>
* config/rs6000/rs6000.c: (rs6000_insn_valid_within_doloop): Fix
prototype.
From-SVN: r100801
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b4abb2..d647b3d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-06-09 Daniel Berlin <dberlin@dberlin.org> + + * config/rs6000/rs6000.c: (rs6000_insn_valid_within_doloop): Fix + prototype. + 2005-06-08 Daniel Berlin <dberlin@dberlin.org> * Makefile.in (OBJS-common): Add tree-ssa-structalias.o. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 4a56a44..732ccbb 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -552,7 +552,7 @@ struct processor_costs power4_cost = { static bool rs6000_function_ok_for_sibcall (tree, tree); -static bool rs6000_invalid_within_doloop (rtx); +static const char *rs6000_invalid_within_doloop (rtx); static rtx rs6000_generate_compare (enum rtx_code); static void rs6000_maybe_dead (rtx); static void rs6000_emit_stack_tie (void); |