summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorgeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-10 19:03:13 +0000
committergeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-10 19:03:13 +0000
commit2d75426453c5dd3c37964a23583dd080b2c717da (patch)
tree1e94e6ae42e1b69753445c8709d3b5658b924507 /gcc/dbxout.c
parentad05a264f9c7930cd97ed47d9266545940cea8b0 (diff)
downloadgcc-2d75426453c5dd3c37964a23583dd080b2c717da.tar.gz
* dbxout.c (dbxout_block): Update for
current_function_func_begin_label a string. * dwarf2out.c (dwarf2out_begin_prologue): Likewise. * except.c (dw2_output_call_site_table): Likewise. * toplev.c (current_function_func_begin_label): Likewise. * tree.h (current_function_func_begin_label): Likewise. * config/rs6000/linux64.h (DBX_OUTPUT_BRAC): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87317 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c4
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);