diff options
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index e67008f9ef5..a8486f5c1a2 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.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; |