diff options
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 110ed6b3543..9527c1de26d 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -3174,8 +3174,8 @@ static void dbxout_block (tree block, int depth, tree args) { const char *begin_label; - if (current_function_func_begin_label != NULL_TREE) - begin_label = IDENTIFIER_POINTER (current_function_func_begin_label); + if (current_function_func_begin_label != NULL) + begin_label = current_function_func_begin_label; else begin_label = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0); |