emit-rtl.c (set_new_first_and_last_label_num): Remove function.

* emit-rtl.c (set_new_first_and_last_label_num):  Remove function.
	* rtl.h (set_new_first_and_last_label_num):  Remove declaration.

From-SVN: r74772
This commit is contained in:
Per Bothner 2003-12-17 21:41:44 -08:00 committed by Per Bothner
parent 5da1fd3dc2
commit f9bed9d36e
3 changed files with 6 additions and 13 deletions

View File

@ -1,3 +1,8 @@
2003-12-17 Per Bothner <per@bothner.com>
* 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 <aoliva@redhat.com>
* config/frv/frv.c (frv_ifcvt_modify_insn): Don't leave alone

View File

@ -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. */

View File

@ -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);