diff options
author | Graham Stott <grahams@redhat.com> | 2001-12-31 03:56:16 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2001-12-31 03:56:16 +0000 |
commit | 1048f2e25d052034a613820ad5211e1a48a5100b (patch) | |
tree | 0f8e8b763fc01f12fff98b701964e2f525f373b5 /gcc | |
parent | e4ed918f6585d888d695ed1a7697dd876ac51be0 (diff) | |
download | gcc-1048f2e25d052034a613820ad5211e1a48a5100b.zip gcc-1048f2e25d052034a613820ad5211e1a48a5100b.tar.gz gcc-1048f2e25d052034a613820ad5211e1a48a5100b.tar.bz2 |
final.c (struct bb_list): Delete.
* final.c (struct bb_list): Delete.
(struct bb_str): Likewise.
From-SVN: r48408
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/final.c | 20 |
2 files changed, 5 insertions, 20 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1b0a249..9d6c906 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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. (flow_loop_exit_edges_find): Likewise. diff --git a/gcc/final.c b/gcc/final.c index e0100c1..e875a7e 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -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 |