final.c (struct bb_list): Delete.
authorGraham Stott <grahams@redhat.com>
Mon, 31 Dec 2001 03:56:16 +0000 (03:56 +0000)
committerGraham Stott <grahams@gcc.gnu.org>
Mon, 31 Dec 2001 03:56:16 +0000 (03:56 +0000)
        * final.c (struct bb_list): Delete.
        (struct bb_str): Likewise.

From-SVN: r48408

gcc/ChangeLog
gcc/final.c

index 1b0a2498df1d988dc4fee911eb6937d6c97ea7a3..9d6c90638cfbdb22a0a3aebe49dafc9368092932 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-31  Graham Stott  <grahams@redhat.com>
+
+       * final.c (struct bb_list): Delete.
+       (struct bb_str): Likewise.
+
 2001-12-31  Graham Stott  <grahams@redhat.com>
 
        * cfgloop.c (flow_loop_entry_edges_find): Fix typo.
index e0100c18be67d35c1d5847cd498f4ff7c24e0a45..e875a7e8a7a51f7aace2176caea3e2ee5e1f6ae9 100644 (file)
@@ -202,26 +202,6 @@ static char *line_note_exists;
 rtx current_insn_predicate;
 #endif
 
-/* Linked list to hold line numbers for each basic block.  */
-
-struct bb_list
-{
-  struct bb_list *next;                /* pointer to next basic block */
-  int line_num;                        /* line number */
-  int file_label_num;          /* LPBC<n> label # for stored filename */
-  int func_label_num;          /* LPBC<n> label # for stored function name */
-};
-
-/* Linked list to hold the strings for each file and function name output.  */
-
-struct bb_str
-{
-  struct bb_str *next;         /* pointer to next string */
-  const char *string;          /* string */
-  int label_num;               /* label number */
-  int length;                  /* string length */
-};
-
 #ifdef HAVE_ATTR_length
 static int asm_insn_count      PARAMS ((rtx));
 #endif