aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-08-17 16:37:49 +0000
committerJeff Law <law@gcc.gnu.org>1998-08-17 10:37:49 -0600
commit2e245dac404f9921584d2baf3b9b98a3b88eacce (patch)
tree87daa8f446ebfd58d99548e8c2faf924718220b2 /gcc/expr.c
parent9f2b61e454f018a57279c463d50e5c736e47edaa (diff)
downloadgcc-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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 2bd4b41..cfea630 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -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;