diff options
author | Alex Samuel <samuel@codesourcery.com> | 2000-04-07 08:16:31 +0000 |
---|---|---|
committer | Alex Samuel <samuel@gcc.gnu.org> | 2000-04-07 08:16:31 +0000 |
commit | 62771d518605d12ca322cf35c20ba5164b5b9c5e (patch) | |
tree | 2f24d8de38b69abb4dd23349b4e66e1a4932fb5a /gcc/toplev.c | |
parent | 4eda98a61fa962aab795830c0c9661c0c81d7a62 (diff) | |
download | gcc-62771d518605d12ca322cf35c20ba5164b5b9c5e.zip gcc-62771d518605d12ca322cf35c20ba5164b5b9c5e.tar.gz gcc-62771d518605d12ca322cf35c20ba5164b5b9c5e.tar.bz2 |
ssa.c (compute_conservative_reg_partition): Declare with void arguments.
* ssa.c (compute_conservative_reg_partition): Declare with
void arguments.
* toplev.c (clean_dump_file): Remove previously-deleted function
inadvertantly merged back in.
* conflict.c (conflict_graph_add): Use a single call to
htab_find_slot to look up and insert.
From-SVN: r32992
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index df5a764..6ab7efc 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1892,26 +1892,6 @@ close_dump_file (index, func, insns) }); } -/* Routine to empty a dump file. */ -static void -clean_dump_file (suffix) - const char *suffix; -{ - char * const dumpname = concat (dump_base_name, suffix, NULL); - - rtl_dump_file = fopen (dumpname, "w"); - - if (rtl_dump_file == NULL) - pfatal_with_name (dumpname); - - free (dumpname); - - fclose (rtl_dump_file); - rtl_dump_file = NULL; - - return; -} - /* Do any final processing required for the declarations in VEC, of which there are LEN. We write out inline functions and variables that have been deferred until this point, but which are required. |