scc

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

commit 47748d1745b972b61f51f7fb3fa34c3e245196d8
parent 57b5eebf19d3c1de5d7ebde4722c5bbabf17f395
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri,  8 Jan 2016 11:18:56 +0100

Make pvoidtype a defined type

Diffstat:
Mcc1/types.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cc1/types.c b/cc1/types.c @@ -90,7 +90,8 @@ static Type types[] = { .letter = L_POINTER, .size = 2, .align = 2, - .printed = 1 + .printed = 1, + .defined = 1, }, { /* 2 = booltype */ .op = INT,