emit-rtl.c (set_new_first_and_last_label_num): Remove function.
authorPer Bothner <per@bothner.com>
Thu, 18 Dec 2003 05:41:44 +0000 (21:41 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Thu, 18 Dec 2003 05:41:44 +0000 (21:41 -0800)
* 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

gcc/ChangeLog
gcc/emit-rtl.c
gcc/rtl.h

index ba3bd9d4a7c21ffc21fd2ee7423bfb60da379ead..8e61be1de83f22bfd273162f9f2ea314eff02ec7 100644 (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
index f88ec56b3fc32e9e139130655e211fb7158474d5..ea00c39b50dd404609329b5ad80004ba4a916c7a 100644 (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.  */
 
index d6e9b9c81e14bfd6851f1c2d9142c68a914ca702..71862e5f47a332c5b4aa4796a562b99edbca6205 100644 (file)
--- 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);