From: bothner Date: Thu, 18 Dec 2003 05:41:44 +0000 (+0000) Subject: * emit-rtl.c (set_new_first_and_last_label_num): Remove function. X-Git-Tag: upstream/4.9.2~74622 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dab001aa23dfa315f19f767454a710d6d45049aa;p=platform%2Fupstream%2Flinaro-gcc.git * emit-rtl.c (set_new_first_and_last_label_num): Remove function. * rtl.h (set_new_first_and_last_label_num): Remove declaration. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74772 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba3bd9d..8e61be1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-12-17 Per Bothner + + * emit-rtl.c (set_new_first_and_last_label_num): Remove function. + * rtl.h (set_new_first_and_last_label_num): Remove declaration. + 2003-12-17 Alexandre Oliva * config/frv/frv.c (frv_ifcvt_modify_insn): Don't leave alone diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index f88ec56..ea00c39 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -77,7 +77,7 @@ static GTY(()) int label_num = 1; static int last_label_num; -/* Value label_num had when set_new_first_and_last_label_number was called. +/* Value label_num had when set_new_last_label_num was called. If label_num has not changed since then, last_label_num is valid. */ static int base_label_num; @@ -2406,17 +2406,6 @@ set_new_first_and_last_insn (rtx first, rtx last) cur_insn_uid++; } -/* Set the range of label numbers found in the current function. - This is used when belatedly compiling an inline function. */ - -void -set_new_first_and_last_label_num (int first, int last) -{ - base_label_num = label_num; - first_label_num = first; - last_label_num = last; -} - /* Set the last label number found in the current function. This is used when belatedly compiling an inline function. */ diff --git a/gcc/rtl.h b/gcc/rtl.h index d6e9b9c..71862e5 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -2049,7 +2049,6 @@ extern void pop_topmost_sequence (void); extern int subreg_realpart_p (rtx); extern void reverse_comparison (rtx); extern void set_new_first_and_last_insn (rtx, rtx); -extern void set_new_first_and_last_label_num (int, int); extern void set_new_last_label_num (int); extern void unshare_all_rtl_again (rtx); extern void unshare_all_rtl_in_chain (rtx);