scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 3470a3150e2f55bb55b58ab240f6e1a03e620195
parent cdc25f13748ccf9b0de99c6c7da518f76681ea57
Author: FRIGN <dev@frign.de>
Date:   Wed, 18 May 2016 22:50:27 +0200

[cc1] Use uchar for type-prop

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

diff --git a/cc1/cc1.h b/cc1/cc1.h @@ -45,7 +45,7 @@ struct type { char ns; /* namespace for struct members */ short id; /* type id, used in dcls */ char letter; /* letter of the type */ - enum typeprops prop; /* type properties */ + unsigned char prop; /* type properties */ TSIZE size; /* sizeof the type */ TSIZE align; /* align of the type */ Type *type; /* base type */