diff options
Diffstat (limited to 'gcc/df-problems.c')
-rw-r--r-- | gcc/df-problems.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/df-problems.c b/gcc/df-problems.c index c0f79d8..a485327 100644 --- a/gcc/df-problems.c +++ b/gcc/df-problems.c @@ -321,7 +321,7 @@ df_rd_alloc (bitmap all_blocks) static void df_rd_bb_local_compute_process_def (struct df_rd_bb_info *bb_info, df_ref *def_rec, - enum df_ref_flags top_flag) + int top_flag) { while (*def_rec) { @@ -2025,7 +2025,7 @@ df_chain_reset (bitmap blocks_to_clear ATTRIBUTE_UNUSED) static void df_chain_create_bb_process_use (bitmap local_rd, df_ref *use_rec, - enum df_ref_flags top_flag) + int top_flag) { bitmap_iterator bi; unsigned int def_index; @@ -2325,10 +2325,10 @@ static struct df_problem problem_CHAIN = solution. */ void -df_chain_add_problem (enum df_chain_flags chain_flags) +df_chain_add_problem (unsigned int chain_flags) { df_add_problem (&problem_CHAIN); - df_chain->local_flags = (unsigned int)chain_flags; + df_chain->local_flags = chain_flags; df_chain->out_of_date_transfer_functions = BITMAP_ALLOC (NULL); } @@ -3931,5 +3931,3 @@ df_simulate_finalize_forwards (basic_block bb, bitmap live) bitmap_clear_bit (live, DF_REF_REGNO (def)); } } - - |