diff options
Diffstat (limited to 'gcc/lto/lto.c')
-rw-r--r-- | gcc/lto/lto.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index d969a1042d7..500cb4f7157 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -1436,7 +1436,7 @@ read_cgraph_and_symbols (unsigned nfiles, const char **fnames) lto_stats.num_input_files = nfiles; - timevar_push (TV_IPA_LTO_DECL_IO); + timevar_push (TV_IPA_LTO_DECL_IN); /* Set the hooks so that all of the ipa passes can read in their data. */ all_file_decl_data @@ -1498,7 +1498,7 @@ read_cgraph_and_symbols (unsigned nfiles, const char **fnames) /* Set the hooks so that all of the ipa passes can read in their data. */ lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data); - timevar_pop (TV_IPA_LTO_DECL_IO); + timevar_pop (TV_IPA_LTO_DECL_IN); if (!quiet_flag) fprintf (stderr, "\nReading the callgraph\n"); @@ -1590,7 +1590,7 @@ materialize_cgraph (void) /* Now that we have input the cgraph, we need to clear all of the aux nodes and read the functions if we are not running in WPA mode. */ - timevar_push (TV_IPA_LTO_GIMPLE_IO); + timevar_push (TV_IPA_LTO_GIMPLE_IN); for (node = cgraph_nodes; node; node = node->next) { @@ -1611,7 +1611,7 @@ materialize_cgraph (void) } } - timevar_pop (TV_IPA_LTO_GIMPLE_IO); + timevar_pop (TV_IPA_LTO_GIMPLE_IN); /* Start the appropriate timer depending on the mode that we are operating in. */ |