diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-06-27 02:10:36 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-06-27 02:10:36 +0000 |
commit | e9873fd5e10401fa9dab8f1524266b443ac0ede5 (patch) | |
tree | 53c74ae4f813f73f12d17c1eddf47aa90001ca16 | |
parent | 33780b459747d9ddba9db0ea6c1cc03b3a6c2238 (diff) | |
download | gcc-e9873fd5e10401fa9dab8f1524266b443ac0ede5.zip gcc-e9873fd5e10401fa9dab8f1524266b443ac0ede5.tar.gz gcc-e9873fd5e10401fa9dab8f1524266b443ac0ede5.tar.bz2 |
mips.c (coprocessor_operand, [...]): Move prototypes from here...
* mips.c (coprocessor_operand, coprocessor2_operand,
symbolic_operand): Move prototypes from here...
* mips-protos.h (coprocessor_operand, coprocessor2_operand,
symbolic_operand): ...to here.
From-SVN: r55018
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/mips/mips-protos.h | 3 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 6 |
3 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 245de6f..9d1a0a0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2002-06-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * mips.c (coprocessor_operand, coprocessor2_operand, + symbolic_operand): Move prototypes from here... + * mips-protos.h (coprocessor_operand, coprocessor2_operand, + symbolic_operand): ...to here. + Wed Jun 26 16:32:57 2002 J"orn Rennecke <joern.rennecke@superh.com> * config/sh/crt1.asm: remove _stack label definition diff --git a/gcc/config/mips/mips-protos.h b/gcc/config/mips/mips-protos.h index 2de221b..7c366ae 100644 --- a/gcc/config/mips/mips-protos.h +++ b/gcc/config/mips/mips-protos.h @@ -127,6 +127,9 @@ extern int mips_register_move_cost PARAMS ((enum machine_mode, extern int pic_address_needs_scratch PARAMS ((rtx)); extern int se_arith_operand PARAMS ((rtx, enum machine_mode)); +extern int coprocessor_operand PARAMS ((rtx, enum machine_mode)); +extern int coprocessor2_operand PARAMS ((rtx, enum machine_mode)); +extern int symbolic_operand PARAMS ((rtx, enum machine_mode)); extern int mips_legitimate_address_p PARAMS ((enum machine_mode, rtx, int)); extern int mips_reg_mode_ok_for_base_p PARAMS ((rtx, diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 50dabcf..8704a63 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -86,12 +86,6 @@ struct mips_arg_info; static enum internal_test map_test_to_internal_test PARAMS ((enum rtx_code)); static int mips16_simple_memory_operand PARAMS ((rtx, rtx, enum machine_mode)); -int coprocessor_operand PARAMS ((rtx, - enum machine_mode)); -int coprocessor2_operand PARAMS ((rtx, - enum machine_mode)); -int symbolic_operand PARAMS ((rtx, - enum machine_mode)); static int m16_check_op PARAMS ((rtx, int, int, int)); static void block_move_loop PARAMS ((rtx, rtx, unsigned int, |