From: Jeffrey A Law Date: Mon, 14 Dec 1998 00:42:38 +0000 (+0000) Subject: rtl.h (multiple_sets): Fix prototype. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=93e0dfe1523dad5d8019bce89cfd60225bcda725;p=gcc.git rtl.h (multiple_sets): Fix prototype. � * rtl.h (multiple_sets): Fix prototype. * rtlanal.c (multiple_sets): Fix return type. From-SVN: r24303 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d91e02ff8a..9b0f0ddcdc7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Dec 14 01:39:28 1998 Jeffrey A Law (law@cygnus.com) + + * rtl.h (multiple_sets): Fix prototype. + * rtlanal.c (multiple_sets): Fix return type. + Sun Dec 13 12:43:58 PST 1998 Jeff Law (law@cygnus.com) * version.c: Bump for snapshot. diff --git a/gcc/rtl.h b/gcc/rtl.h index e29767fe481..2c2ab355170 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -988,7 +988,7 @@ extern int no_labels_between_p PROTO((rtx, rtx)); extern int modified_in_p PROTO((rtx, rtx)); extern int reg_set_p PROTO((rtx, rtx)); extern rtx single_set PROTO((rtx)); -extern rtx multiple_sets PROTO((rtx)); +extern int multiple_sets PROTO((rtx)); extern rtx find_last_value PROTO((rtx, rtx *, rtx)); extern int refers_to_regno_p PROTO((int, int, rtx, rtx *)); extern int reg_overlap_mentioned_p PROTO((rtx, rtx));