scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 608b4b083e9ac4b94fe91609d0914e6472e96292
parent b4f1a5ae6dce5d9b5bd6b1bfb99706d96d5f51ac
Author: Quentin Rameau <quinq@fifth.space>
Date:   Fri, 11 Aug 2017 10:56:31 +0200

[cc1] Fix variable accidental removal in 4187be1

Diffstat:
Mcc1/init.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/cc1/init.c b/cc1/init.c @@ -317,6 +317,7 @@ autoinit(Symbol *sym, Node *np) { Symbol *hidden; Type *tp = sym->type; + size_t n; /* FIXME: It should be SIZET */ repeat: switch (tp->op) {