diff options
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 0a50f61..757f03d 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -2019,14 +2019,14 @@ expand_all_functions (void) if (node->process) { - expanded_func_count++; - if(node->tp_first_run) - profiled_func_count++; - - if (symtab->dump_file) - fprintf (symtab->dump_file, - "Time profile order in expand_all_functions:%s:%d\n", - node->asm_name (), node->tp_first_run); + expanded_func_count++; + if(node->tp_first_run) + profiled_func_count++; + + if (symtab->dump_file) + fprintf (symtab->dump_file, + "Time profile order in expand_all_functions:%s:%d\n", + node->asm_name (), node->tp_first_run); node->process = 0; node->expand (); } |