scc

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

commit 8ec7fbf712e7b396a36fdfffe6070e47ed7b00b1
parent 9be8dcd2584b09ed00978daadb5ec6b597349b0d
Author: Roberto E. Vargas Caballero <Roberto E. Vargas Caballero>
Date:   Tue, 26 Apr 2016 20:00:29 +0200

[cc2] change sym->u.ilabel to sym->inst

Diffstat:
Mcc2/cc2.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc2/cc2.h b/cc2/cc2.h @@ -139,7 +139,7 @@ struct symbol { union { TSIZE off; Node *stmt; - Inst *ilabel; + Inst *inst; } u; Symbol *next; Symbol *h_next;