diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2023-08-25 10:16:21 +0200 |
---|---|---|
committer | Uros Bizjak <ubizjak@gmail.com> | 2023-08-25 15:28:29 +0200 |
commit | 3339220b9b0897c7e1cc887c5cb0a24ab4baf4ff (patch) | |
tree | 7187b4afc0ddddcdb892c8e85f587cf3a0eff361 /gcc/cp | |
parent | 99a3fcb8ff0bf27407c525415384372189e2c3cc (diff) | |
download | gcc-3339220b9b0897c7e1cc887c5cb0a24ab4baf4ff.zip gcc-3339220b9b0897c7e1cc887c5cb0a24ab4baf4ff.tar.gz gcc-3339220b9b0897c7e1cc887c5cb0a24ab4baf4ff.tar.bz2 |
gcc: Rename TRUE/FALSE to true/false in *.cc files
gcc/c-family/ChangeLog:
* c-format.cc (read_any_format_width):
Rename TRUE/FALSE to true/false.
gcc/ChangeLog:
* caller-save.cc (new_saved_hard_reg):
Rename TRUE/FALSE to true/false.
(setup_save_areas): Ditto.
* gcc.cc (set_collect_gcc_options): Ditto.
(driver::build_multilib_strings): Ditto.
(print_multilib_info): Ditto.
* genautomata.cc (gen_cpu_unit): Ditto.
(gen_query_cpu_unit): Ditto.
(gen_bypass): Ditto.
(gen_excl_set): Ditto.
(gen_presence_absence_set): Ditto.
(gen_presence_set): Ditto.
(gen_final_presence_set): Ditto.
(gen_absence_set): Ditto.
(gen_final_absence_set): Ditto.
(gen_automaton): Ditto.
(gen_regexp_repeat): Ditto.
(gen_regexp_allof): Ditto.
(gen_regexp_oneof): Ditto.
(gen_regexp_sequence): Ditto.
(process_decls): Ditto.
(reserv_sets_are_intersected): Ditto.
(initiate_excl_sets): Ditto.
(form_reserv_sets_list): Ditto.
(check_presence_pattern_sets): Ditto.
(check_absence_pattern_sets): Ditto.
(check_regexp_units_distribution): Ditto.
(check_unit_distributions_to_automata): Ditto.
(create_ainsns): Ditto.
(output_insn_code_cases): Ditto.
(output_internal_dead_lock_func): Ditto.
(form_important_insn_automata_lists): Ditto.
* gengtype-state.cc (read_state_files_list): Ditto.
* gengtype.cc (main): Ditto.
* gimple-array-bounds.cc (array_bounds_checker::check_array_bounds):
Ditto.
* gimple.cc (gimple_build_call_from_tree): Ditto.
(preprocess_case_label_vec_for_gimple): Ditto.
* gimplify.cc (gimplify_call_expr): Ditto.
* ordered-hash-map-tests.cc (test_map_of_int_to_strings): Ditto.
gcc/cp/ChangeLog:
* call.cc (build_conditional_expr):
Rename TRUE/FALSE to true/false.
(build_new_op): Ditto.
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/call.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/call.cc b/gcc/cp/call.cc index 673ec91..23e458d 100644 --- a/gcc/cp/call.cc +++ b/gcc/cp/call.cc @@ -6058,7 +6058,7 @@ build_conditional_expr (const op_location_t &loc, if (complain & tf_error) { auto_diagnostic_group d; - op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE); + op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, false); print_z_candidates (loc, candidates); } return error_mark_node; @@ -7129,7 +7129,7 @@ build_new_op (const op_location_t &loc, enum tree_code code, int flags, /* ... Otherwise, report the more generic "no matching operator found" error */ auto_diagnostic_group d; - op_error (loc, code, code2, arg1, arg2, arg3, FALSE); + op_error (loc, code, code2, arg1, arg2, arg3, false); print_z_candidates (loc, candidates); } } @@ -7145,7 +7145,7 @@ build_new_op (const op_location_t &loc, enum tree_code code, int flags, if (complain & tf_error) { auto_diagnostic_group d; - op_error (loc, code, code2, arg1, arg2, arg3, TRUE); + op_error (loc, code, code2, arg1, arg2, arg3, true); print_z_candidates (loc, candidates); } result = error_mark_node; |