dbxout.c (dbxout_finish_complex_stabs): Mark 'line' variable ATTRIBUTE_UNUSED.
authorZack Weinberg <zack@gcc.gnu.org>
Wed, 27 Oct 2004 17:28:29 +0000 (17:28 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Wed, 27 Oct 2004 17:28:29 +0000 (17:28 +0000)
* dbxout.c (dbxout_finish_complex_stabs): Mark 'line' variable
ATTRIBUTE_UNUSED.

From-SVN: r89692

gcc/ChangeLog
gcc/dbxout.c

index 9102abc9e067c582fc09262677012fa5eaa92ad6..de5c50fccd12c5ac783158a7a75893c28bdeceda 100644 (file)
@@ -1,3 +1,8 @@
+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
 
 2004-10-26  Fariborz Jahanian <fjahanian@apple.com>
 
-       * config/rs6000/rs6000.md (andsi3_internal8): Set CR when splitting 
+       * config/rs6000/rs6000.md (andsi3_internal8): Set CR when splitting
        into rotlsi3.
 
 2004-10-26  Kazu Hirata  <kazu@cs.umass.edu>
index e67008f9ef5346b778178c2dbd118237a6a99d93..a8486f5c1a220c049b08d6508c52ac2541ffe800 100644 (file)
@@ -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;