Commit 12126025 by Zack Weinberg

dbxout.c (dbxout_finish_complex_stabs): Mark 'line' variable ATTRIBUTE_UNUSED.

	* dbxout.c (dbxout_finish_complex_stabs): Mark 'line' variable
	ATTRIBUTE_UNUSED.

From-SVN: r89692
parent b6ff777c
2004-10-27 Zack Weinberg <zack@codesourcery.com>
* dbxout.c (dbxout_finish_complex_stabs): Mark 'line' variable
ATTRIBUTE_UNUSED.
2004-10-27 Zack Weinberg <zack@codesourcery.com>
* c-lex.c (cb_def_pragma): Clean up code for making location
palatable to diagnostic.c.
......
......@@ -833,10 +833,11 @@ static void
dbxout_finish_complex_stabs (tree sym, STAB_CODE_TYPE code,
rtx addr, const char *label, int number)
{
int line = sym ? DECL_SOURCE_LINE (sym) : 0;
int line ATTRIBUTE_UNUSED;
char *str;
size_t len;
line = sym ? DECL_SOURCE_LINE (sym) : 0;
if (DBX_CONTIN_LENGTH > 0)
{
char *chunk;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment