From: Jeffrey A Law Date: Wed, 6 May 1998 15:51:37 +0000 (+0000) Subject: * loop.c (regs_match_p): Fix typo in prototype. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fd4a1ca5033e78017f2ea8fe24d9133da79af88f;p=gcc.git * loop.c (regs_match_p): Fix typo in prototype. From-SVN: r19583 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ddc7be1f7c..51beb67029e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ Wed May 6 16:46:01 1998 Jeffrey A Law (law@cygnus.com) + * loop.c (regs_match_p): Fix typo in prototype. + * regmove.c (try_auto_increment): Wrap declaration inside an #ifdef AUTO_INC_DEC. diff --git a/gcc/loop.c b/gcc/loop.c index 51e554d2965..526de1bad78 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -296,7 +296,7 @@ static int libcall_benefit PROTO((rtx)); static void ignore_some_movables PROTO((struct movable *)); static void force_movables PROTO((struct movable *)); static void combine_movables PROTO((struct movable *, int)); -static int regs_patch_p PROTO((rtx, rtx, struct movable *)); +static int regs_match_p PROTO((rtx, rtx, struct movable *)); static int rtx_equal_for_loop_p PROTO((rtx, rtx, struct movable *)); static void add_label_notes PROTO((rtx, rtx)); static void move_movables PROTO((struct movable *, int, int, rtx, rtx, int));