]> git.sur5r.net Git - cc65/commitdiff
Removed unused variables.
authorOliver Schmidt <ol.sc@web.de>
Thu, 2 May 2013 11:51:08 +0000 (14:51 +0300)
committerOliver Schmidt <ol.sc@web.de>
Thu, 2 May 2013 11:51:08 +0000 (14:51 +0300)
src/cc65/declare.c

index 5f4a0f10f6635deff7f3337939cf66436dc51c11..5694b76b8e645395f174d03f8bb2a30005683a96 100644 (file)
@@ -599,7 +599,6 @@ static SymEntry* ParseUnionDecl (const char* Name)
     unsigned  FieldSize;
     int       FieldWidth;       /* Width in bits, -1 if not a bit-field */
     SymTable* FieldTab;
-    SymEntry* Entry;
 
 
     if (CurTok.Tok != TOK_LCURLY) {
@@ -608,7 +607,7 @@ static SymEntry* ParseUnionDecl (const char* Name)
     }
 
     /* Add a forward declaration for the struct in the current lexical level */
-    Entry = AddStructSym (Name, SC_UNION, 0, 0);
+    AddStructSym (Name, SC_UNION, 0, 0);
 
     /* Skip the curly brace */
     NextToken ();
@@ -702,7 +701,6 @@ static SymEntry* ParseStructDecl (const char* Name)
     int       BitOffs;          /* Bit offset for bit-fields */
     int       FieldWidth;       /* Width in bits, -1 if not a bit-field */
     SymTable* FieldTab;
-    SymEntry* Entry;
 
 
     if (CurTok.Tok != TOK_LCURLY) {
@@ -711,7 +709,7 @@ static SymEntry* ParseStructDecl (const char* Name)
     }
 
     /* Add a forward declaration for the struct in the current lexical level */
-    Entry = AddStructSym (Name, SC_STRUCT, 0, 0);
+    AddStructSym (Name, SC_STRUCT, 0, 0);
 
     /* Skip the curly brace */
     NextToken ();