From 876760f64a4f5dff31960d263599835694f7698a Mon Sep 17 00:00:00 2001 From: nathan Date: Sun, 3 Apr 2005 10:27:51 +0000 Subject: * params.c (set_param_value): Use gcc_assert & gcc_unreachable. * passes.c (open_dump_file, rest_of_handle_final): Likewise. * postreload-gcse.c (expr_equiv_p, oprs_unchanged_p, hash_scan_set, reg_set_between_after_reload_p, reg_used_between_after_reload_p, get_avail_load_store_reg, eliminate_partially_redundant_load): Likewise. * postreload.c (reload_cse_simplify_set, reload_combine_note_use): Likewise. * predict.c (predict_insn, expected_value_to_br_prob, propagate_freq, expensive_function_p): Likewise. * print-rtl.c (print_rtx): Likewise. * profile.c (instrument_edges, instrument_values, compute_branch_probabilities, branch_prob, union_groups, tree_register_profile_hooks, rtl_register_profile_hooks): Likewise. * protoize.c (in_system_include_dir, file_could_be_converted, file_normally_convertible, gen_aux_info_file, seek_to_line, do_cleaning): Likewise. * tree-ssa-alias.c (collect_points_to_info_r): Likewise. * tree-ssa-ccp.c (execute_fold_all_builtins): Likewise. * tree-ssa-loop-ivopts.c (produce_memory_decl_rtl): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97485 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/params.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gcc/params.c') diff --git a/gcc/params.c b/gcc/params.c index cc55fae6f67..965c7cccff7 100644 --- a/gcc/params.c +++ b/gcc/params.c @@ -61,8 +61,7 @@ set_param_value (const char *name, int value) size_t i; /* Make sure nobody tries to set a parameter to an invalid value. */ - if (value == INVALID_PARAM_VAL) - abort (); + gcc_assert (value != INVALID_PARAM_VAL); /* Scan the parameter table to find a matching entry. */ for (i = 0; i < num_compiler_params; ++i) -- cgit v1.2.1