]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Update per-file selftest and finalization hooks for .c to .cc renaming
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 18 Jan 2022 19:36:27 +0000 (14:36 -0500)
committerDavid Malcolm <dmalcolm@redhat.com>
Wed, 19 Jan 2022 16:33:53 +0000 (11:33 -0500)
This is mostly a mechanical change, apart from:
- fix the name of attribute_c_tests to match its filename (attribs.cc)
- fix the name of opt_proposer_c to match its filename (opt-suggestions.cc)
- delete a bogus "modref_c_tests" decl from ipa-modref-tree.h that's been
  present since the initial commit of that file
  (d119f34c952f8718fdbabc63e2f369a16e92fa07)

gcc/ChangeLog:
* attribs.cc (attribute_c_tests): Rename to...
(attribs_cc_tests): ...this.
* bitmap.cc (bitmap_c_tests): Rename to...
(bitmap_cc_tests): ...this.
* cgraph.cc (cgraph_c_finalize): Rename to...
(cgraph_cc_finalize): ...this.
(cgraph_c_tests): Rename to...
(cgraph_cc_tests): ...this.
* cgraph.h (cgraph_c_finalize): Rename to...
(cgraph_cc_finalize): ...this.
(cgraphunit_c_finalize): Rename to...
(cgraphunit_cc_finalize): ...this.
* cgraphunit.cc (cgraphunit_c_finalize): Rename to...
(cgraphunit_cc_finalize): ...this.
* convert.cc (convert_c_tests): Rename to...
(convert_cc_tests): ...this.
* dbgcnt.cc (dbgcnt_c_tests): Rename to...
(dbgcnt_cc_tests): ...this.
* diagnostic-show-locus.cc (diagnostic_show_locus_c_tests): Rename to...
(diagnostic_show_locus_cc_tests): ...this.
* diagnostic.cc (diagnostic_c_tests): Rename to...
(diagnostic_cc_tests): ...this.
* dumpfile.cc (dumpfile_c_tests): Rename to...
(dumpfile_cc_tests): ...this.
* dwarf2out.cc (dwarf2out_c_finalize): Rename to...
(dwarf2out_cc_finalize): ...this.
* dwarf2out.h (dwarf2out_c_finalize): Rename to...
(dwarf2out_cc_finalize): ...this.
* edit-context.cc (edit_context_c_tests): Rename to...
(edit_context_cc_tests): ...this.
* et-forest.cc (et_forest_c_tests): Rename to...
(et_forest_cc_tests): ...this.
* fibonacci_heap.cc (fibonacci_heap_c_tests): Rename to...
(fibonacci_heap_cc_tests): ...this.
* fold-const.cc (fold_const_c_tests): Rename to...
(fold_const_cc_tests): ...this.
* function-tests.cc (function_tests_c_tests): Rename to...
(function_tests_cc_tests): ...this.
* gcse.cc (gcse_c_finalize): Rename to...
(gcse_cc_finalize): ...this.
* gcse.h (gcse_c_finalize): Rename to...
(gcse_cc_finalize): ...this.
* ggc-tests.cc (ggc_tests_c_tests): Rename to...
(ggc_tests_cc_tests): ...this.
* gimple-ssa-store-merging.cc (store_merging_c_tests): Rename to...
(store_merging_cc_tests): ...this.
* gimple.cc (gimple_c_tests): Rename to...
(gimple_cc_tests): ...this.
* hash-map-tests.cc (hash_map_tests_c_tests): Rename to...
(hash_map_tests_cc_tests): ...this.
* hash-set-tests.cc (hash_set_tests_c_tests): Rename to...
(hash_set_tests_cc_tests): ...this.
* input.cc (input_c_tests): Rename to...
(input_cc_tests): ...this.
* ipa-cp.cc (ipa_cp_c_finalize): Rename to...
(ipa_cp_cc_finalize): ...this.
* ipa-fnsummary.cc (ipa_fnsummary_c_finalize): Rename to...
(ipa_fnsummary_cc_finalize): ...this.
* ipa-fnsummary.h (ipa_fnsummary_c_finalize): Rename to...
(ipa_fnsummary_cc_finalize): ...this.
* ipa-modref-tree.cc (ipa_modref_tree_c_tests): Rename to...
(ipa_modref_tree_cc_tests): ...this.
* ipa-modref-tree.h (modref_c_tests): Delete bogus decl.
* ipa-modref.cc (ipa_modref_c_finalize): Rename to...
(ipa_modref_cc_finalize): ...this.
* ipa-modref.h (ipa_modref_c_finalize): Rename to...
(ipa_modref_cc_finalize): ...this.
* ipa-prop.h (ipa_cp_c_finalize): Rename to...
(ipa_cp_cc_finalize): ...this.
* ipa-reference.cc (ipa_reference_c_finalize): Rename to...
(ipa_reference_cc_finalize): ...this.
* ipa-reference.h (ipa_reference_c_finalize): Rename to...
(ipa_reference_cc_finalize): ...this.
* ira-costs.cc (ira_costs_c_finalize): Rename to...
(ira_costs_cc_finalize): ...this.
* ira.h (ira_costs_c_finalize): Rename to...
(ira_costs_cc_finalize): ...this.
* opt-suggestions.cc (opt_proposer_c_tests): Rename to...
(opt_suggestions_cc_tests): ...this.
* opts.cc (opts_c_tests): Rename to...
(opts_cc_tests): ...this.
* predict.cc (predict_c_tests): Rename to...
(predict_cc_tests): ...this.
* pretty-print.cc (pretty_print_c_tests): Rename to...
(pretty_print_cc_tests): ...this.
* read-rtl-function.cc (read_rtl_function_c_tests): Rename to...
(read_rtl_function_cc_tests): ...this.
* rtl-tests.cc (rtl_tests_c_tests): Rename to...
(rtl_tests_cc_tests): ...this.
* sbitmap.cc (sbitmap_c_tests): Rename to...
(sbitmap_cc_tests): ...this.
* selftest-run-tests.cc (selftest::run_tests): Update calls for
_c_ to _cc_ function renamings; fix names of attribs and
opt-suggestions tests.
* selftest.cc (selftest_c_tests): Rename to...
(selftest_cc_tests): ...this.
* selftest.h (attribute_c_tests): Rename to...
(attribs_cc_tests): ...this.
(bitmap_c_tests): Rename to...
(bitmap_cc_tests): ...this.
(cgraph_c_tests): Rename to...
(cgraph_cc_tests): ...this.
(convert_c_tests): Rename to...
(convert_cc_tests): ...this.
(diagnostic_c_tests): Rename to...
(diagnostic_cc_tests): ...this.
(diagnostic_show_locus_c_tests): Rename to...
(diagnostic_show_locus_cc_tests): ...this.
(dumpfile_c_tests): Rename to...
(dumpfile_cc_tests): ...this.
(edit_context_c_tests): Rename to...
(edit_context_cc_tests): ...this.
(et_forest_c_tests): Rename to...
(et_forest_cc_tests): ...this.
(fibonacci_heap_c_tests): Rename to...
(fibonacci_heap_cc_tests): ...this.
(fold_const_c_tests): Rename to...
(fold_const_cc_tests): ...this.
(function_tests_c_tests): Rename to...
(function_tests_cc_tests): ...this.
(ggc_tests_c_tests): Rename to...
(ggc_tests_cc_tests): ...this.
(gimple_c_tests): Rename to...
(gimple_cc_tests): ...this.
(hash_map_tests_c_tests): Rename to...
(hash_map_tests_cc_tests): ...this.
(hash_set_tests_c_tests): Rename to...
(hash_set_tests_cc_tests): ...this.
(input_c_tests): Rename to...
(input_cc_tests): ...this.
(opts_c_tests): Rename to...
(opts_cc_tests): ...this.
(predict_c_tests): Rename to...
(predict_cc_tests): ...this.
(pretty_print_c_tests): Rename to...
(pretty_print_cc_tests): ...this.
(read_rtl_function_c_tests): Rename to...
(read_rtl_function_cc_tests): ...this.
(rtl_tests_c_tests): Rename to...
(rtl_tests_cc_tests): ...this.
(sbitmap_c_tests): Rename to...
(sbitmap_cc_tests): ...this.
(selftest_c_tests): Rename to...
(selftest_cc_tests): ...this.
(simplify_rtx_c_tests): Rename to...
(simplify_rtx_cc_tests): ...this.
(spellcheck_c_tests): Rename to...
(spellcheck_cc_tests): ...this.
(spellcheck_tree_c_tests): Rename to...
(spellcheck_tree_cc_tests): ...this.
(sreal_c_tests): Rename to...
(sreal_cc_tests): ...this.
(store_merging_c_tests): Rename to...
(store_merging_cc_tests): ...this.
(tree_c_tests): Rename to...
(tree_cc_tests): ...this.
(tree_cfg_c_tests): Rename to...
(tree_cfg_cc_tests): ...this.
(typed_splay_tree_c_tests): Rename to...
(typed_splay_tree_cc_tests): ...this.
(vec_c_tests): Rename to...
(vec_cc_tests): ...this.
(vec_perm_indices_c_tests): Rename to...
(vec_perm_indices_cc_tests): ..this.
(opt_proposer_c_tests): Rename to...
(opt_suggestions_cc_tests): ...this.
(dbgcnt_c_tests): Rename to...
(dbgcnt_cc_tests): ...this.
(ipa_modref_tree_c_tests): Rename to...
(ipa_modref_tree_cc_tests): ...this.
* simplify-rtx.cc (simplify_rtx_c_tests): Rename to...
(simplify_rtx_cc_tests): ...this.
* spellcheck-tree.cc (spellcheck_tree_c_tests): Rename to...
(spellcheck_tree_cc_tests): ...this.
* spellcheck.cc (spellcheck_c_tests): Rename to...
(spellcheck_cc_tests): ...this.
* sreal.cc (sreal_c_tests): Rename to...
(sreal_cc_tests): ...this.
* toplev.cc (toplev::finalize): Update calls for _c_ to _cc_
function renamings.
* tree-cfg.cc (tree_cfg_c_tests): Rename to...
(tree_cfg_cc_tests): ...this.
* tree.cc (tree_c_tests): Rename to...
(tree_cc_tests): ...this.
* typed-splay-tree.cc (typed_splay_tree_c_tests): Rename to...
(typed_splay_tree_cc_tests): ...this.
* vec-perm-indices.cc (vec_perm_indices_c_tests): Rename to...
(vec_perm_indices_cc_tests): ...this.
* vec.cc (vec_c_tests): Rename to...
(vec_cc_tests): ...this.

gcc/c-family/ChangeLog:
* c-common.cc (c_common_c_tests): Rename to...
(c_common_cc_tests): ...this.
(c_family_tests): Update calls for .c to .cc renaming.
* c-common.h (c_format_c_tests): Rename to...
(c_format_cc_tests): ...this.
(c_indentation_c_tests): Rename to...
(c_indentation_cc_tests): ...this.
(c_pretty_print_c_tests): Rename to...
(c_pretty_print_cc_tests): ...this.
* c-format.cc (c_format_c_tests): Rename to...
(c_format_cc_tests): ...this.
* c-indentation.cc (c_indentation_c_tests): Rename to...
(c_indentation_cc_tests): ...this.
* c-pretty-print.cc (c_pretty_print_c_tests): Rename to...
(c_pretty_print_cc_tests): ...this.

gcc/cp/ChangeLog:
* cp-lang.cc (selftest::run_cp_tests): Update calls for .c to .cc
renaming.
* cp-tree.h (cp_pt_c_tests): Rename to...
(cp_pt_cc_tests): ...this.
(cp_tree_c_tests): Rename to...
(cp_tree_cc_tests): ...this.
* pt.cc (cp_pt_c_tests): Rename to...
(cp_pt_cc_tests): ...this.
* tree.cc (cp_tree_c_tests): Rename to...
(cp_tree_cc_tests): ...this.

Signed-off-by: David Malcolm <dmalcolm@redhat.com>
66 files changed:
gcc/attribs.cc
gcc/bitmap.cc
gcc/c-family/c-common.cc
gcc/c-family/c-common.h
gcc/c-family/c-format.cc
gcc/c-family/c-indentation.cc
gcc/c-family/c-pretty-print.cc
gcc/cgraph.cc
gcc/cgraph.h
gcc/cgraphunit.cc
gcc/convert.cc
gcc/cp/cp-lang.cc
gcc/cp/cp-tree.h
gcc/cp/pt.cc
gcc/cp/tree.cc
gcc/dbgcnt.cc
gcc/diagnostic-show-locus.cc
gcc/diagnostic.cc
gcc/dumpfile.cc
gcc/dwarf2out.cc
gcc/dwarf2out.h
gcc/edit-context.cc
gcc/et-forest.cc
gcc/fibonacci_heap.cc
gcc/fold-const.cc
gcc/function-tests.cc
gcc/gcse.cc
gcc/gcse.h
gcc/ggc-tests.cc
gcc/gimple-ssa-store-merging.cc
gcc/gimple.cc
gcc/hash-map-tests.cc
gcc/hash-set-tests.cc
gcc/input.cc
gcc/ipa-cp.cc
gcc/ipa-fnsummary.cc
gcc/ipa-fnsummary.h
gcc/ipa-modref-tree.cc
gcc/ipa-modref-tree.h
gcc/ipa-modref.cc
gcc/ipa-modref.h
gcc/ipa-prop.h
gcc/ipa-reference.cc
gcc/ipa-reference.h
gcc/ira-costs.cc
gcc/ira.h
gcc/opt-suggestions.cc
gcc/opts.cc
gcc/predict.cc
gcc/pretty-print.cc
gcc/read-rtl-function.cc
gcc/rtl-tests.cc
gcc/sbitmap.cc
gcc/selftest-run-tests.cc
gcc/selftest.cc
gcc/selftest.h
gcc/simplify-rtx.cc
gcc/spellcheck-tree.cc
gcc/spellcheck.cc
gcc/sreal.cc
gcc/toplev.cc
gcc/tree-cfg.cc
gcc/tree.cc
gcc/typed-splay-tree.cc
gcc/vec-perm-indices.cc
gcc/vec.cc

index 189f56a6e48141cda35034dd5e2f7f0032abcf77..497dcff84dfba709b747a9d0fdc80c5483139328 100644 (file)
@@ -2655,7 +2655,7 @@ test_attribute_exclusions ()
 }
 
 void
-attribute_c_tests ()
+attribs_cc_tests ()
 {
   test_attribute_exclusions ();
 }
index 69b9d53eec97de998422f26bd5f049993094f17d..88c329f932503e40dd61aa4c15ae42e54f258054 100644 (file)
@@ -2976,7 +2976,7 @@ test_aligned_chunk (unsigned num_bits)
 /* Run all of the selftests within this file.  */
 
 void
-bitmap_c_tests ()
+bitmap_cc_tests ()
 {
   test_gc_alloc ();
   test_set_range ();
index d9674ea0581d7f3b8edeb12af4454a57e59990b5..f56f6df8fe3d4bc7bc2999df1c7ba3b13c2d5726 100644 (file)
@@ -9096,7 +9096,7 @@ test_fold_for_warn ()
 /* Run all of the selftests within this file.  */
 
 static void
-c_common_c_tests ()
+c_common_cc_tests ()
 {
   test_fold_for_warn ();
 }
@@ -9106,10 +9106,10 @@ c_common_c_tests ()
 void
 c_family_tests (void)
 {
-  c_common_c_tests ();
-  c_format_c_tests ();
-  c_indentation_c_tests ();
-  c_pretty_print_c_tests ();
+  c_common_cc_tests ();
+  c_format_cc_tests ();
+  c_indentation_cc_tests ();
+  c_pretty_print_cc_tests ();
   c_spellcheck_cc_tests ();
 }
 
index ee0c4de2a054dbfc5a3746abcedad22d21512735..28c73fe2847d1df4dd993a0d48549840fbbfd4f2 100644 (file)
@@ -1512,9 +1512,9 @@ extern tree braced_lists_to_strings (tree, tree);
 namespace selftest {
   /* Declarations for specific families of tests within c-family,
      by source file, in alphabetical order.  */
-  extern void c_format_c_tests (void);
-  extern void c_indentation_c_tests (void);
-  extern void c_pretty_print_c_tests (void);
+  extern void c_format_cc_tests (void);
+  extern void c_indentation_cc_tests (void);
+  extern void c_pretty_print_cc_tests (void);
   extern void c_spellcheck_cc_tests (void);
 
   /* The entrypoint for running all of the above tests.  */
index d7878b7880c8b176cd321da6586aea322403dfe7..a2affdacd7c36e0b8175b0e2534b89527a564991 100644 (file)
@@ -5424,7 +5424,7 @@ test_type_mismatch_range_labels ()
 /* Run all of the selftests within this file.  */
 
 void
-c_format_c_tests ()
+c_format_cc_tests ()
 {
   test_get_modifier_for_format_len ();
   test_get_format_for_type_printf ();
index 30c9b252a6fa5987e9d951e15254793cd969a200..85a3ae1b303839470977dd3fb339d1982133f268 100644 (file)
@@ -804,7 +804,7 @@ test_get_visual_column ()
 /* Run all of the selftests within this file.  */
 
 void
-c_indentation_c_tests ()
+c_indentation_cc_tests ()
 {
   test_next_tab_stop ();
   test_get_visual_column ();
index 0b4256c7ac9f9170a03b4ea44baad2dd08592334..ceedaea962adfa2096303afb4ffc512589ac6ff7 100644 (file)
@@ -2999,7 +2999,7 @@ test_location_wrappers ()
 /* Run all of the selftests within this file.  */
 
 void
-c_pretty_print_c_tests ()
+c_pretty_print_cc_tests ()
 {
   test_location_wrappers ();
 }
index ea8db2f4b8ca6c68b5837103deeb303d470910d3..b923a59ab0c17a2cf6bc3c8d10590ee1458f0c90 100644 (file)
@@ -4077,7 +4077,7 @@ cgraph_node::get_fun () const
    within the same process.  For use by toplev::finalize.  */
 
 void
-cgraph_c_finalize (void)
+cgraph_cc_finalize (void)
 {
   nested_function_info::release ();
   thunk_info::release ();
@@ -4261,7 +4261,7 @@ test_symbol_table_test ()
 /* Run all of the selftests within this file.  */
 
 void
-cgraph_c_tests ()
+cgraph_cc_tests ()
 {
   test_symbol_table_test ();
 }
index 43fc94e69eaa9655f8c2563d129333a19a3af21f..8c512b648ee586bf319da23d271d7749673479d2 100644 (file)
@@ -2568,7 +2568,7 @@ asmname_hasher::equal (symtab_node *n, const_tree t)
 }
 
 /* In cgraph.cc  */
-void cgraph_c_finalize (void);
+void cgraph_cc_finalize (void);
 void release_function_body (tree);
 cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void);
 
@@ -2579,7 +2579,7 @@ const char* cgraph_inline_failed_string (cgraph_inline_failed_t);
 cgraph_inline_failed_type_t cgraph_inline_failed_type (cgraph_inline_failed_t);
 
 /* In cgraphunit.cc  */
-void cgraphunit_c_finalize (void);
+void cgraphunit_cc_finalize (void);
 int tp_first_run_node_cmp (const void *pa, const void *pb);
 
 /* In symtab-thunks.cc  */
index e043f9f12bc2640dab91692485130d46143a6c34..01f4e28204e6f04d74b9d2b62e1763257f7eb2ec 100644 (file)
@@ -2535,7 +2535,7 @@ symbol_table::finalize_compilation_unit (void)
    within the same process.  For use by toplev::finalize.  */
 
 void
-cgraphunit_c_finalize (void)
+cgraphunit_cc_finalize (void)
 {
   gcc_assert (cgraph_new_nodes.length () == 0);
   cgraph_new_nodes.truncate (0);
index 02997d3e88be265593f02c1bcf2ae14378f90e5b..25cc3ff3bd1b4f9d6c5f797a364dc14f0cfac199 100644 (file)
@@ -1199,7 +1199,7 @@ test_convert_to_integer_maybe_fold ()
 /* Run all of the selftests within this file.  */
 
 void
-convert_c_tests ()
+convert_cc_tests ()
 {
   test_convert_to_integer_maybe_fold ();
 }
index 7861f93ff217f7383b21a1feee8d2325d0e6eeae..7c8b94741faee952a43d8aaba8d738ef3a7105e4 100644 (file)
@@ -278,8 +278,8 @@ run_cp_tests (void)
   c_family_tests ();
 
   /* Additional C++-specific tests.  */
-  cp_pt_c_tests ();
-  cp_tree_c_tests ();
+  cp_pt_cc_tests ();
+  cp_tree_cc_tests ();
 }
 
 } // namespace selftest
index e428df06ea21df1dfc07ecdba2e6d1ff68d07033..186c54424a6322f3a8e8016e22dfa7e160a168ac 100644 (file)
@@ -8641,8 +8641,8 @@ namespace selftest {
 
   /* Declarations for specific families of tests within cp,
      by source file, in alphabetical order.  */
-  extern void cp_pt_c_tests ();
-  extern void cp_tree_c_tests (void);
+  extern void cp_pt_cc_tests ();
+  extern void cp_tree_cc_tests (void);
 } // namespace selftest
 #endif /* #if CHECKING_P */
 
index 586ad1c97f63454584fabf2284badd5b646e54f8..60bc35a86366428dcb6feb4b6ee8f73a822fb970 100644 (file)
@@ -30581,7 +30581,7 @@ test_type_dependent_expression_p ()
 /* Run all of the selftests within this file.  */
 
 void
-cp_pt_c_tests ()
+cp_pt_cc_tests ()
 {
   test_build_non_dependent_expr ();
   test_type_dependent_expression_p ();
index d27f64fe9bfc3207e4e19325e4dc40104a409cb0..bcd44e739214f9e046fff1ebd35af2adb6ff3e29 100644 (file)
@@ -6167,7 +6167,7 @@ test_lvalue_kind ()
 /* Run all of the selftests within this file.  */
 
 void
-cp_tree_c_tests ()
+cp_tree_cc_tests ()
 {
   test_lvalue_kind ();
 }
index 5dd00d6befb0f316dfcefb249d8b579c050475e9..11a8171d9433073fa2c0f996e9bebf51ebaa3c25 100644 (file)
@@ -272,7 +272,7 @@ test_sorted_dbg_counters ()
 }
 
 void
-dbgcnt_c_tests ()
+dbgcnt_cc_tests ()
 {
   test_sorted_dbg_counters ();
 }
index 0465788362bfcef28912c9f8e7850d1812799d3f..6eafe19785ffc46dd6f5be4787853ba74a403bdc 100644 (file)
@@ -5658,7 +5658,7 @@ test_line_numbers_multiline_range ()
 /* Run all of the selftests within this file.  */
 
 void
-diagnostic_show_locus_c_tests ()
+diagnostic_show_locus_cc_tests ()
 {
   test_line_span ();
 
index 97e2e2c862e4bee0a9c9a990222ce4abd5c99dbc..f5f43d5e9a7d60815adaaf781b343d343fb6adb4 100644 (file)
@@ -2466,7 +2466,7 @@ test_num_digits ()
 /* Run all of the selftests within this file.  */
 
 void
-diagnostic_c_tests ()
+diagnostic_cc_tests ()
 {
   test_print_escaped_string ();
   test_print_parseable_fixits_none ();
index 44ee66f9f0a975bad6d9e93920e4e484a7540ab8..ac79aa09245e5c391c10100ee95fb3846b81f6ce 100644 (file)
@@ -2766,7 +2766,7 @@ test_pr87025 ()
 /* Run all of the selftests within this file.  */
 
 void
-dumpfile_c_tests ()
+dumpfile_cc_tests ()
 {
   test_impl_location ();
   for_each_line_table_case (test_capture_of_dump_calls);
index 62b468d4ad9f4f65ca94c6dcd1ea2c83f7177999..f3bd322d90186e34a868eb97f0bca9b9ccb5d447 100644 (file)
@@ -33058,7 +33058,7 @@ dwarf2out_early_finish (const char *filename)
    within the same process.  For use by toplev::finalize.  */
 
 void
-dwarf2out_c_finalize (void)
+dwarf2out_cc_finalize (void)
 {
   last_var_location_insn = NULL;
   cached_next_real_insn = NULL;
index ab2200bb8ecada7d0c925bbc755f0ee9a0da1aac..656ef94afde0c064128dcdc0282ff3d1c1ea55c2 100644 (file)
@@ -419,7 +419,7 @@ struct fixed_point_type_info
     } scale_factor;
 };
 
-void dwarf2out_c_finalize (void);
+void dwarf2out_cc_finalize (void);
 
 /* Some DWARF internals are exposed for the needs of DWARF-based debug
    formats.  */
index 92715f64fc8c4968eb64b07e0fd58c27d5eb6d4a..6879ddd41b49c7a766a0d1e9c9065fe20c76ac97 100644 (file)
@@ -1788,7 +1788,7 @@ test_applying_fixits_column_validation (const line_table_case &case_)
 /* Run all of the selftests within this file.  */
 
 void
-edit_context_c_tests ()
+edit_context_cc_tests ()
 {
   test_get_content ();
   for_each_line_table_case (test_applying_fixits_insert_before);
index a1b1f5742328a98f6784d0a68480b8f29b62efcc..ebdcccb9f1d98b69f6bb113b0721e75d4f02c87d 100644 (file)
@@ -872,7 +872,7 @@ test_disconnected_nodes ()
 /* Run all of the selftests within this file.  */
 
 void
-et_forest_c_tests ()
+et_forest_cc_tests ()
 {
   test_single_node ();
   test_simple_tree ();
index 9911757a5562f045c0e81a43a4778f19a0ec0a66..f4b52d6e3afb2ddd92382bee94881c9ca15ed8dd 100644 (file)
@@ -279,7 +279,7 @@ test_struct_key ()
 /* Run all of the selftests within this file.  */
 
 void
-fibonacci_heap_c_tests ()
+fibonacci_heap_cc_tests ()
 {
   test_empty_heap ();
   test_basic_heap_operations ();
index 8fe633c03f995de446b8fd9bbf9d494da1ae3ef8..fd9c6352d4f4f18c7bf761e8386c9039343f8899 100644 (file)
@@ -16784,7 +16784,7 @@ test_vec_duplicate_folding ()
 /* Run all of the selftests within this file.  */
 
 void
-fold_const_c_tests ()
+fold_const_cc_tests ()
 {
   test_arithmetic_folding ();
   test_vector_folding ();
index a6ecfdf3857adb0a5d9ef19fd0a9338e711b1e07..7d7761569ad59a6c195fcf4cf62a98c38e2a5772 100644 (file)
@@ -687,7 +687,7 @@ test_expansion_to_rtl ()
 /* Run all of the selftests within this file.  */
 
 void
-function_tests_c_tests ()
+function_tests_cc_tests ()
 {
   test_fndecl_int_void ();
   test_fndecl_float_intchar ();
index 1e3113d0e0e6c8b2d319a8150cbf08d8d6e7e52e..b67353143a21450a6068e51ad4e9257a831fe3fc 100644 (file)
@@ -4128,7 +4128,7 @@ make_pass_rtl_hoist (gcc::context *ctxt)
    within the same process.  For use by toplev::finalize.  */
 
 void
-gcse_c_finalize (void)
+gcse_cc_finalize (void)
 {
   test_insn = NULL;
 }
index ba5ee56cff9ab7086ee1aab03c2acf5f2e2acbe7..4a201f34d785f1ae432a74797d239eb7d854d903 100644 (file)
@@ -39,7 +39,7 @@ extern struct target_gcse *this_target_gcse;
 #define this_target_gcse (&default_target_gcse)
 #endif
 
-void gcse_c_finalize (void);
+void gcse_cc_finalize (void);
 extern bool gcse_or_cprop_is_too_expensive (const char *);
 
 #endif
index cc5f913a63344dfff7d9a473bad43804e2a289db..620989489b69bd7db56ba0763693bdf0602fdbd3 100644 (file)
@@ -462,7 +462,7 @@ namespace selftest {
 /* Run all of the selftests within this file.  */
 
 void
-ggc_tests_c_tests ()
+ggc_tests_cc_tests ()
 {
   test_basic_struct ();
   test_length ();
index 0571cf7d0e60d9a2ba6c2f0ecbd5853038de978b..eb70d90a45c9ab3a65f2636ba5f2fb3935ced141 100644 (file)
@@ -5633,7 +5633,7 @@ verify_clear_bit_region_be (void)
 /* Run all of the selftests within this file.  */
 
 void
-store_merging_c_tests (void)
+store_merging_cc_tests (void)
 {
   verify_shift_bytes_in_array_left ();
   verify_shift_bytes_in_array_right ();
index 4c02df5aeeaf1a99181852f5db3c08e4faf147c3..5559e56d460eb460b21081f0aac949373112af5a 100644 (file)
@@ -3510,7 +3510,7 @@ test_return_without_value ()
 /* Run all of the selftests within this file.  */
 
 void
-gimple_c_tests ()
+gimple_cc_tests ()
 {
   test_assign_single ();
   test_assign_binop ();
index eea661a94f19e13250facdc9b72f24fcc2417edd..c7d3dda8e0303fd90801410ff4f233523ac16c33 100644 (file)
@@ -467,7 +467,7 @@ test_nonzero_empty_key ()
 /* Run all of the selftests within this file.  */
 
 void
-hash_map_tests_c_tests ()
+hash_map_tests_cc_tests ()
 {
   test_map_of_strings_to_int ();
   test_map_of_int_to_strings ();
index 6cab17a338bfeed0a0e7181bcb4b928c4064e4f2..de5c0e7a9035a37da13e2eebe26beda1b7fb7768 100644 (file)
@@ -293,7 +293,7 @@ test_set_of_type_with_ctor_and_dtor ()
 /* Run all of the selftests within this file.  */
 
 void
-hash_set_tests_c_tests ()
+hash_set_tests_cc_tests ()
 {
   test_set_of_strings ();
   test_set_of_type_with_ctor_and_dtor ();
index 4a92e552531cb14a2ef107562d006b238d5cb7e2..b3970613d812ff571644c3fd944cfeac6d515dac 100644 (file)
@@ -3885,7 +3885,7 @@ void test_cpp_utf8 ()
 /* Run all of the selftests within this file.  */
 
 void
-input_c_tests ()
+input_cc_tests ()
 {
   test_linenum_comparisons ();
   test_should_have_column_data_p ();
index e16015f937fde70fef04ee7132f5e120ec863c54..453e9c93cc31d711021498bc745830c368ee88a4 100644 (file)
@@ -6630,7 +6630,7 @@ make_pass_ipa_cp (gcc::context *ctxt)
    within the same process.  For use by toplev::finalize.  */
 
 void
-ipa_cp_c_finalize (void)
+ipa_cp_cc_finalize (void)
 {
   base_count = profile_count::uninitialized ();
   overall_size = 0;
index 7e7afb082c145ffb001c3f0f44b1b51ef48db820..0d7e395c846a201d325687627c0ee12117c31210 100644 (file)
@@ -4966,7 +4966,7 @@ make_pass_ipa_fn_summary (gcc::context *ctxt)
    within the same process.  For use by toplev::finalize.  */
 
 void
-ipa_fnsummary_c_finalize (void)
+ipa_fnsummary_cc_finalize (void)
 {
   ipa_free_fn_summary ();
 }
index 34c2398f66472dd1a16816e0b6be70fd28b194c7..e1f1d1b839cfa2771b5857b1e638ec2c664b4b9c 100644 (file)
@@ -428,7 +428,7 @@ void evaluate_properties_for_edge (struct cgraph_edge *e,
                                   ipa_auto_call_arg_values *avals,
                                   bool compute_contexts);
 
-void ipa_fnsummary_c_finalize (void);
+void ipa_fnsummary_cc_finalize (void);
 HOST_WIDE_INT ipa_get_stack_frame_offset (struct cgraph_node *node);
 void ipa_remove_from_growth_caches (struct cgraph_edge *edge);
 
index e0fc92f31b233462a8e506d10ee8d558e026e595..97e497accf2aacf34f2b1b2cfd63722f9e9ec1b5 100644 (file)
@@ -1007,7 +1007,7 @@ test_merge ()
 
 
 void
-ipa_modref_tree_c_tests ()
+ipa_modref_tree_cc_tests ()
 {
   test_insert_search_collapse ();
   test_merge ();
index 16118008467dd3243d04f7cc427c300742a0f3f1..edb3b49374a352db743940e6a505aad2673237ee 100644 (file)
@@ -738,8 +738,6 @@ struct GTY((user)) modref_tree
   }
 };
 
-void modref_c_tests ();
-
 void gt_ggc_mx (modref_tree <int>* const&);
 void gt_ggc_mx (modref_tree <tree_node*>* const&);
 void gt_pch_nx (modref_tree <int>* const&);
index 37b5355e622059d9aa75350aa64c4aa98534f1a7..ad5cfd6507f0626eb6772049f7bb747ab88701fb 100644 (file)
@@ -5490,7 +5490,7 @@ pass_ipa_modref::execute (function *)
 /* Summaries must stay alive until end of compilation.  */
 
 void
-ipa_modref_c_finalize ()
+ipa_modref_cc_finalize ()
 {
   if (optimization_summaries)
     ggc_delete (optimization_summaries);
index 2f71e151a43e08f3662726d4e70d6f1e76714650..642108ae5dd8a0a26265dfb911892b7fea7f32ae 100644 (file)
@@ -73,7 +73,7 @@ struct GTY(()) modref_summary
 
 modref_summary *get_modref_function_summary (cgraph_node *func);
 modref_summary *get_modref_function_summary (gcall *call, bool *interposed);
-void ipa_modref_c_finalize ();
+void ipa_modref_cc_finalize ();
 void ipa_merge_modref_summary_after_inlining (cgraph_edge *e);
 
 /* All flags that are implied by the ECF_CONST functions.  */
index 12f76265681bba4460dafa31608cf5582b021460..553adfc9f35ccec0bfafa2deaf04a168a6c1857f 100644 (file)
@@ -1189,6 +1189,6 @@ tree build_ref_for_offset (location_t, tree, poly_int64, bool, tree,
                           gimple_stmt_iterator *, bool);
 
 /* In ipa-cp.cc  */
-void ipa_cp_c_finalize (void);
+void ipa_cp_cc_finalize (void);
 
 #endif /* IPA_PROP_H */
index a2f2fadd5658bd50bf30323a47f81a3e8eb000cd..67e0c85a95e9d957bd740abd3708aaa0fe091fd8 100644 (file)
@@ -1322,7 +1322,7 @@ make_pass_ipa_reference (gcc::context *ctxt)
    within the same process.  For use by toplev::finalize.  */
 
 void
-ipa_reference_c_finalize (void)
+ipa_reference_cc_finalize (void)
 {
   if (ipa_ref_opt_sum_summaries != NULL)
     {
index be25beb361a474aead3cd60530fca912939385eb..2048e4b81b12ade0cb6cbe6745340d2d1aae0604 100644 (file)
@@ -24,7 +24,7 @@ along with GCC; see the file COPYING3.  If not see
 /* In ipa-reference.cc  */
 bitmap ipa_reference_get_read_global (struct cgraph_node *fn);
 bitmap ipa_reference_get_written_global (struct cgraph_node *fn);
-void ipa_reference_c_finalize (void);
+void ipa_reference_cc_finalize (void);
 int ipa_reference_var_uid (tree t);
 
 #endif  /* GCC_IPA_REFERENCE_H  */
index 1e4cf5a35e4e4d6cf3d765c616e67d91b1870503..964c94a06ef56e27d0134a66eee7f60700ecfbab 100644 (file)
@@ -2411,7 +2411,7 @@ ira_adjust_equiv_reg_cost (unsigned regno, int cost)
 }
 
 void
-ira_costs_c_finalize (void)
+ira_costs_cc_finalize (void)
 {
   this_target_ira_int->free_ira_costs ();
 }
index 9a222762f1542cea7701530cf9d0de3fb7f15b59..c12827378e4321bf25ffcd3c58d2bf70589f5f34 100644 (file)
--- a/gcc/ira.h
+++ b/gcc/ira.h
@@ -216,7 +216,7 @@ extern void ira_restore_scratches (FILE *dump_file);
 extern void ira_nullify_asm_goto (rtx_insn *insn);
 
 /* ira-costs.cc */
-extern void ira_costs_c_finalize (void);
+extern void ira_costs_cc_finalize (void);
 
 /* ira-lives.cc */
 extern rtx non_conflicting_reg_copy_p (rtx_insn *);
index 84a6f261a8acb040fff300f43baef2b49334aa68..33f298560a1a472d245e1f915a7864e03d36a69d 100644 (file)
@@ -396,7 +396,7 @@ test_completion_garbage (option_proposer &proposer)
 /* Run all of the selftests within this file.  */
 
 void
-opt_proposer_c_tests ()
+opt_suggestions_cc_tests ()
 {
   option_proposer proposer;
 
index 17e1884f0e4f5c6c1a8383731d0e994231e4a24a..dfdc4d7838974f4a6e3cdd1549df232b2c66b895 100644 (file)
@@ -3712,7 +3712,7 @@ test_get_option_html_page ()
 /* Run all of the selftests within this file.  */
 
 void
-opts_c_tests ()
+opts_cc_tests ()
 {
   test_get_option_html_page ();
 }
index 36046abff6b7d12d91b89df57d279c5ff024d688..5734e4c851630c85d66ff751c76f97c04d7f1bdb 100644 (file)
@@ -4557,7 +4557,7 @@ test_prediction_value_range ()
 /* Run all of the selfests within this file.  */
 
 void
-predict_c_tests ()
+predict_cc_tests ()
 {
   test_prediction_value_range ();
 }
index c765def5d4a8489dce30fc334ab7b9f08369cfa1..3ee206d2a42c1695e18337a9dcdcb67612fcfa17 100644 (file)
@@ -2613,7 +2613,7 @@ static void test_utf8 ()
 /* Run all of the selftests within this file.  */
 
 void
-pretty_print_c_tests ()
+pretty_print_cc_tests ()
 {
   test_basic_printing ();
   test_pp_format ();
index 85faf2f447278fe9e948157601375863ed91dd0a..49c88804a2a61e28192375a8d18ac8053d91eb9f 100644 (file)
@@ -2204,7 +2204,7 @@ test_loading_repeat ()
 /* Run all of the selftests within this file.  */
 
 void
-read_rtl_function_c_tests ()
+read_rtl_function_cc_tests ()
 {
   test_edge_flags ();
   test_parsing_regnos ();
index 9b0a1261c173a67a0c59f54eb35e05e38f362619..6957d700cedfe065ff24c03c253f6c20aeab0873 100644 (file)
@@ -310,7 +310,7 @@ test_dumping_repeat ()
 /* Run all of the selftests within this file.  */
 
 void
-rtl_tests_c_tests ()
+rtl_tests_cc_tests ()
 {
   test_dumping_regs ();
   test_dumping_insns ();
index cdbd2725543a498be9431c7d4fa2ffe7f089107e..5ac2b6d0f67ec05b9c44b6d44648ef4701e08cf4 100644 (file)
@@ -997,7 +997,7 @@ test_bit_in_range ()
 /* Run all of the selftests within this file.  */
 
 void
-sbitmap_c_tests ()
+sbitmap_cc_tests ()
 {
   test_set_range ();
   test_bit_in_range ();
index 4123e5400282c4cee804c52c04aebaed7474c005..99c3542325368215dbabe3c0d312c54d9ddff6a1 100644 (file)
@@ -55,67 +55,67 @@ selftest::run_tests ()
      run the tests for lowest-level code first.  */
 
   /* Sanity-check for selftests themselves.  */
-  selftest_c_tests ();
+  selftest_cc_tests ();
 
   /* Low-level data structures.  */
-  bitmap_c_tests ();
-  sbitmap_c_tests ();
-  dumpfile_c_tests ();
-  et_forest_c_tests ();
-  hash_map_tests_c_tests ();
-  hash_set_tests_c_tests ();
-  vec_c_tests ();
-  pretty_print_c_tests ();
+  bitmap_cc_tests ();
+  sbitmap_cc_tests ();
+  dumpfile_cc_tests ();
+  et_forest_cc_tests ();
+  hash_map_tests_cc_tests ();
+  hash_set_tests_cc_tests ();
+  vec_cc_tests ();
+  pretty_print_cc_tests ();
   wide_int_cc_tests ();
-  ggc_tests_c_tests ();
-  sreal_c_tests ();
-  fibonacci_heap_c_tests ();
-  typed_splay_tree_c_tests ();
-  opt_proposer_c_tests ();
-  opts_c_tests ();
+  ggc_tests_cc_tests ();
+  sreal_cc_tests ();
+  fibonacci_heap_cc_tests ();
+  typed_splay_tree_cc_tests ();
+  opt_suggestions_cc_tests ();
+  opts_cc_tests ();
   json_cc_tests ();
-  cgraph_c_tests ();
+  cgraph_cc_tests ();
   optinfo_emit_json_cc_tests ();
   opt_problem_cc_tests ();
   ordered_hash_map_tests_cc_tests ();
   splay_tree_cc_tests ();
 
   /* Mid-level data structures.  */
-  input_c_tests ();
-  vec_perm_indices_c_tests ();
-  tree_c_tests ();
-  convert_c_tests ();
-  gimple_c_tests ();
-  rtl_tests_c_tests ();
-  read_rtl_function_c_tests ();
+  input_cc_tests ();
+  vec_perm_indices_cc_tests ();
+  tree_cc_tests ();
+  convert_cc_tests ();
+  gimple_cc_tests ();
+  rtl_tests_cc_tests ();
+  read_rtl_function_cc_tests ();
   digraph_cc_tests ();
   tristate_cc_tests ();
-  ipa_modref_tree_c_tests ();
+  ipa_modref_tree_cc_tests ();
 
   /* Higher-level tests, or for components that other selftests don't
      rely on.  */
-  diagnostic_show_locus_c_tests ();
-  diagnostic_c_tests ();
+  diagnostic_show_locus_cc_tests ();
+  diagnostic_cc_tests ();
   diagnostic_format_json_cc_tests ();
-  edit_context_c_tests ();
-  fold_const_c_tests ();
-  spellcheck_c_tests ();
-  spellcheck_tree_c_tests ();
-  tree_cfg_c_tests ();
+  edit_context_cc_tests ();
+  fold_const_cc_tests ();
+  spellcheck_cc_tests ();
+  spellcheck_tree_cc_tests ();
+  tree_cfg_cc_tests ();
   tree_diagnostic_path_cc_tests ();
-  attribute_c_tests ();
+  attribs_cc_tests ();
 
   /* This one relies on most of the above.  */
-  function_tests_c_tests ();
+  function_tests_cc_tests ();
 
   /* Run any target-specific selftests.  */
   if (targetm.run_target_selftests)
     targetm.run_target_selftests ();
 
-  store_merging_c_tests ();
-  predict_c_tests ();
-  simplify_rtx_c_tests ();
-  dbgcnt_c_tests ();
+  store_merging_cc_tests ();
+  predict_cc_tests ();
+  simplify_rtx_cc_tests ();
+  dbgcnt_cc_tests ();
 
   /* Run any lang-specific selftests.  */
   lang_hooks.run_lang_selftests ();
index ed5b3967a11a7427e71f14827f26078cdfcf3d2f..89abfba5e80d054ffd7198cbadb6ffe96534f23a 100644 (file)
@@ -412,7 +412,7 @@ test_locate_file ()
 /* Run all of the selftests within this file.  */
 
 void
-selftest_c_tests ()
+selftest_cc_tests ()
 {
   test_libiberty ();
   test_assertions ();
index 386c0d924e654634bfe214a3fb39462b0d05a49e..7a715631c623fa566d2368059874880733f8c550 100644 (file)
@@ -218,56 +218,56 @@ class test_runner
 
 /* Declarations for specific families of tests (by source file), in
    alphabetical order.  */
-extern void attribute_c_tests ();
-extern void bitmap_c_tests ();
-extern void cgraph_c_tests ();
-extern void convert_c_tests ();
-extern void diagnostic_c_tests ();
+extern void attribs_cc_tests ();
+extern void bitmap_cc_tests ();
+extern void cgraph_cc_tests ();
+extern void convert_cc_tests ();
+extern void diagnostic_cc_tests ();
 extern void diagnostic_format_json_cc_tests ();
-extern void diagnostic_show_locus_c_tests ();
+extern void diagnostic_show_locus_cc_tests ();
 extern void digraph_cc_tests ();
-extern void dumpfile_c_tests ();
-extern void edit_context_c_tests ();
-extern void et_forest_c_tests ();
-extern void fibonacci_heap_c_tests ();
-extern void fold_const_c_tests ();
-extern void function_tests_c_tests ();
-extern void ggc_tests_c_tests ();
-extern void gimple_c_tests ();
-extern void hash_map_tests_c_tests ();
-extern void hash_set_tests_c_tests ();
-extern void input_c_tests ();
+extern void dumpfile_cc_tests ();
+extern void edit_context_cc_tests ();
+extern void et_forest_cc_tests ();
+extern void fibonacci_heap_cc_tests ();
+extern void fold_const_cc_tests ();
+extern void function_tests_cc_tests ();
+extern void ggc_tests_cc_tests ();
+extern void gimple_cc_tests ();
+extern void hash_map_tests_cc_tests ();
+extern void hash_set_tests_cc_tests ();
+extern void input_cc_tests ();
 extern void json_cc_tests ();
 extern void opt_problem_cc_tests ();
 extern void optinfo_emit_json_cc_tests ();
-extern void opts_c_tests ();
+extern void opts_cc_tests ();
 extern void ordered_hash_map_tests_cc_tests ();
-extern void predict_c_tests ();
-extern void pretty_print_c_tests ();
+extern void predict_cc_tests ();
+extern void pretty_print_cc_tests ();
 extern void range_tests ();
 extern void range_op_tests ();
 extern void gimple_range_tests ();
-extern void read_rtl_function_c_tests ();
-extern void rtl_tests_c_tests ();
-extern void sbitmap_c_tests ();
-extern void selftest_c_tests ();
-extern void simplify_rtx_c_tests ();
-extern void spellcheck_c_tests ();
-extern void spellcheck_tree_c_tests ();
+extern void read_rtl_function_cc_tests ();
+extern void rtl_tests_cc_tests ();
+extern void sbitmap_cc_tests ();
+extern void selftest_cc_tests ();
+extern void simplify_rtx_cc_tests ();
+extern void spellcheck_cc_tests ();
+extern void spellcheck_tree_cc_tests ();
 extern void splay_tree_cc_tests ();
-extern void sreal_c_tests ();
-extern void store_merging_c_tests ();
-extern void tree_c_tests ();
-extern void tree_cfg_c_tests ();
+extern void sreal_cc_tests ();
+extern void store_merging_cc_tests ();
+extern void tree_cc_tests ();
+extern void tree_cfg_cc_tests ();
 extern void tree_diagnostic_path_cc_tests ();
 extern void tristate_cc_tests ();
-extern void typed_splay_tree_c_tests ();
-extern void vec_c_tests ();
-extern void vec_perm_indices_c_tests ();
+extern void typed_splay_tree_cc_tests ();
+extern void vec_cc_tests ();
+extern void vec_perm_indices_cc_tests ();
 extern void wide_int_cc_tests ();
-extern void opt_proposer_c_tests ();
-extern void dbgcnt_c_tests ();
-extern void ipa_modref_tree_c_tests ();
+extern void opt_suggestions_cc_tests ();
+extern void dbgcnt_cc_tests ();
+extern void ipa_modref_tree_cc_tests ();
 
 extern int num_passes;
 
index f17c917c2963a01862f3b5f03a08652cdd2a6aa3..bd176e86adfd7caecc32b5b76aec2203931d4c71 100644 (file)
@@ -8459,7 +8459,7 @@ simplify_const_poly_int_tests<N>::run ()
 /* Run all of the selftests within this file.  */
 
 void
-simplify_rtx_c_tests ()
+simplify_rtx_cc_tests ()
 {
   test_scalar_ops ();
   test_vector_ops ();
index 28ad35b7301e8053c574c63fc7a411a3ff83ebc5..0be1e41b15bbfac93ee17c4f8d7e3d95ad142975 100644 (file)
@@ -104,7 +104,7 @@ test_find_closest_identifier ()
 /* Run all of the selftests within this file.  */
 
 void
-spellcheck_tree_c_tests ()
+spellcheck_tree_cc_tests ()
 {
   test_find_closest_identifier ();
 }
index 6077bed786189dda7697b2df4d272382bb8f70ba..3e58344f51001c1c57b7715719232724da04c14f 100644 (file)
@@ -515,7 +515,7 @@ test_metric_conditions ()
 /* Run all of the selftests within this file.  */
 
 void
-spellcheck_c_tests ()
+spellcheck_cc_tests ()
 {
   test_edit_distances ();
   test_get_edit_distance_cutoff ();
index 960f0da6fd7128ae55ca83c6440d8f99f5f7d008..75c360e3970d9af9934093994fe8daff189a150c 100644 (file)
@@ -379,7 +379,7 @@ sreal_verify_negative_division (void)
 
 /* Run all of the selftests within this file.  */
 
-void sreal_c_tests ()
+void sreal_cc_tests ()
 {
   sreal_verify_basics ();
   sreal_verify_arithmetics ();
index 534da1462e8c8ee809ab52305ad7bdaa5a2aa026..ea27e441a91f5f9bac35e9998a7441fc9f5cd7af 100644 (file)
@@ -2355,19 +2355,19 @@ toplev::finalize (void)
   rtl_initialized = false;
   this_target_rtl->target_specific_initialized = false;
 
-  /* Needs to be called before cgraph_c_finalize since it uses symtab.  */
-  ipa_reference_c_finalize ();
-  ipa_fnsummary_c_finalize ();
-  ipa_modref_c_finalize ();
+  /* Needs to be called before cgraph_cc_finalize since it uses symtab.  */
+  ipa_reference_cc_finalize ();
+  ipa_fnsummary_cc_finalize ();
+  ipa_modref_cc_finalize ();
   ipa_edge_modifications_finalize ();
 
-  cgraph_c_finalize ();
-  cgraphunit_c_finalize ();
+  cgraph_cc_finalize ();
+  cgraphunit_cc_finalize ();
   symtab_thunks_cc_finalize ();
-  dwarf2out_c_finalize ();
-  gcse_c_finalize ();
-  ipa_cp_c_finalize ();
-  ira_costs_c_finalize ();
+  dwarf2out_cc_finalize ();
+  gcse_cc_finalize ();
+  ipa_cp_cc_finalize ();
+  ira_costs_cc_finalize ();
 
   /* save_decoded_options uses opts_obstack, so these must
      be cleaned up together.  */
index 4a8e22494967e8f6ce81503857917789fe70d464..77178a6bf693f212f4a117278449aec4154516b5 100644 (file)
@@ -10220,7 +10220,7 @@ test_fully_connected ()
 /* Run all of the selftests within this file.  */
 
 void
-tree_cfg_c_tests ()
+tree_cfg_cc_tests ()
 {
   test_linear_chain ();
   test_diamond ();
index ae159ee20ce56a734b2a1999f40b2700a2861107..c4b36619e6a4d1024da2105eaa53fdfb3fdb0029 100644 (file)
@@ -15203,7 +15203,7 @@ test_escaped_strings (void)
 /* Run all of the selftests within this file.  */
 
 void
-tree_c_tests ()
+tree_cc_tests ()
 {
   test_integer_constants ();
   test_identifiers ();
index 194dd99125b3754061278dcfe8950e778e1dde0c..df4457c16816878f97c5d0a7d9f8ac6efa3de0eb 100644 (file)
@@ -72,7 +72,7 @@ test_str_to_int ()
 /* Run all of the selftests within this file.  */
 
 void
-typed_splay_tree_c_tests ()
+typed_splay_tree_cc_tests ()
 {
   test_str_to_int ();
 }
index 5c2d94f84ce76a6367840c4ed20e1e2dc3a6e01e..acf90225280e5fd1ac0dddba16065467b281b31e 100644 (file)
@@ -371,7 +371,7 @@ test_vec_perm_12 (void)
 /* Run selftests for this file.  */
 
 void
-vec_perm_indices_c_tests ()
+vec_perm_indices_cc_tests ()
 {
   test_vec_perm_12 ();
 }
index 1131ecbc854e273e2322b47cc454dabc006abe02..af4a5e5d3ad0f5e1dd1fc2fe3f6f8e66e8223cab 100644 (file)
@@ -571,7 +571,7 @@ test_auto_delete_vec ()
 /* Run all of the selftests within this file.  */
 
 void
-vec_c_tests ()
+vec_cc_tests ()
 {
   test_init ();
   test_quick_push ();