diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/function.c b/gcc/function.c index 8c0c6c5..4a963dc 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -124,8 +124,8 @@ int current_function_uses_only_leaf_regs; post-instantiation libcalls. */ int virtuals_instantiated; -/* Assign unique numbers to labels generated for profiling. */ -static int profile_label_no; +/* Assign unique numbers to labels generated for profiling, debugging, etc. */ +static int funcdef_no; /* These variables hold pointers to functions to create and destroy target specific, per-function data structures. */ @@ -6292,6 +6292,8 @@ prepare_function_start () current_function_outgoing_args_size = 0; + current_function_funcdef_no = funcdef_no++; + cfun->arc_profile = profile_arc_flag || flag_test_coverage; cfun->arc_profile = profile_arc_flag || flag_test_coverage; @@ -6669,9 +6671,8 @@ expand_function_start (subr, parms_have_cleanups) if (current_function_profile) { - current_function_profile_label_no = profile_label_no++; #ifdef PROFILE_HOOK - PROFILE_HOOK (current_function_profile_label_no); + PROFILE_HOOK (current_function_funcdef_no); #endif } |