diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-08-17 16:37:49 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-08-17 10:37:49 -0600 |
commit | 2e245dac404f9921584d2baf3b9b98a3b88eacce (patch) | |
tree | 87daa8f446ebfd58d99548e8c2faf924718220b2 /gcc/expr.c | |
parent | 9f2b61e454f018a57279c463d50e5c736e47edaa (diff) | |
download | gcc-2e245dac404f9921584d2baf3b9b98a3b88eacce.zip gcc-2e245dac404f9921584d2baf3b9b98a3b88eacce.tar.gz gcc-2e245dac404f9921584d2baf3b9b98a3b88eacce.tar.bz2 |
expr.c (move_by_pieces): No longer static.
* expr.c (move_by_pieces): No longer static. Remove prototype.
* rtl.h (move_by_pieces): Add extern prototype.
* mips.c (expand_block_move): Handle aligned straight line copy by
calling move_by_pieces.
From-SVN: r21794
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -156,7 +156,6 @@ static rtx get_push_address PROTO ((int)); static rtx enqueue_insn PROTO((rtx, rtx)); static int queued_subexp_p PROTO((rtx)); static void init_queue PROTO((void)); -static void move_by_pieces PROTO((rtx, rtx, int, int)); static int move_by_pieces_ninsns PROTO((unsigned int, int)); static void move_by_pieces_1 PROTO((rtx (*) (rtx, ...), enum machine_mode, struct move_by_pieces *)); @@ -1394,7 +1393,7 @@ convert_modes (mode, oldmode, x, unsignedp) through protect_from_queue before calling. ALIGN (in bytes) is maximum alignment we can assume. */ -static void +void move_by_pieces (to, from, len, align) rtx to, from; int len, align; |