[hackers] [scc] Remove non used variables || Roberto E. Vargas Caballero
commit 53b8642aa9cedc398e937c31d7b5ca75c78b0ed9
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Wed Aug 5 22:14:00 2015 +0200
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Wed Aug 5 22:14:00 2015 +0200
Remove non used variables
diff --git a/cc1/code.c b/cc1/code.c
index d513286..e0488cb 100644
--- a/cc1/code.c
+++ b/cc1/code.c
_AT_@ -365,7 +365,6 @@ constnode(Symbol *sym)
Node *
sizeofnode(Type *tp)
{
- Node *np;
Symbol *sym;
sym = newsym(NS_IDEN);
diff --git a/cc1/decl.c b/cc1/decl.c
index 3376a60..453a4b2 100644
--- a/cc1/decl.c
+++ b/cc1/decl.c
_AT_@ -545,7 +545,7 @@ decl(void)
static void
parlist(Type *tp)
{
- Symbol *pars[NR_FUNPARAM], **sp = pars, *sym;
+ Symbol *pars[NR_FUNPARAM], **sp = pars;
bool isfun;
int n;
Received on Wed Aug 05 2015 - 22:16:05 CEST
This archive was generated by hypermail 2.3.0
: Wed Aug 05 2015 - 22:24:14 CEST