dbxout.c (dbxout_source_line): Move declaration of begin_label to the block that needs it.

* dbxout.c (dbxout_source_line): Move declaration of begin_label to
	the block that needs it.

From-SVN: r89694
This commit is contained in:
Richard Sandiford 2004-10-27 17:31:14 +00:00 committed by Richard Sandiford
parent 3da3d587c5
commit 47a3c2dcc6
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2004-10-27 Richard Sandiford <rsandifo@redhat.com>
* dbxout.c (dbxout_source_line): Move declaration of begin_label to
the block that needs it.
2004-10-27 Zack Weinberg <zack@codesourcery.com> 2004-10-27 Zack Weinberg <zack@codesourcery.com>
* dbxout.c (dbxout_finish_complex_stabs): Mark 'line' variable * dbxout.c (dbxout_finish_complex_stabs): Mark 'line' variable

View File

@ -1234,8 +1234,6 @@ dbxout_begin_prologue (unsigned int lineno, const char *filename)
static void static void
dbxout_source_line (unsigned int lineno, const char *filename) dbxout_source_line (unsigned int lineno, const char *filename)
{ {
const char *begin_label = XSTR(XEXP(DECL_RTL(current_function_decl), 0), 0);
dbxout_source_file (filename); dbxout_source_file (filename);
#ifdef DBX_OUTPUT_SOURCE_LINE #ifdef DBX_OUTPUT_SOURCE_LINE
@ -1243,9 +1241,10 @@ dbxout_source_line (unsigned int lineno, const char *filename)
#else #else
if (DBX_LINES_FUNCTION_RELATIVE) if (DBX_LINES_FUNCTION_RELATIVE)
{ {
rtx begin_label = XEXP (DECL_RTL (current_function_decl), 0);
dbxout_begin_stabn_sline (lineno); dbxout_begin_stabn_sline (lineno);
dbxout_stab_value_internal_label_diff ("LM", &dbxout_source_line_counter, dbxout_stab_value_internal_label_diff ("LM", &dbxout_source_line_counter,
begin_label); XSTR (begin_label, 0));
} }
else else