commit 3470a3150e2f55bb55b58ab240f6e1a03e620195
Author: FRIGN <[email protected]>
AuthorDate: Wed May 18 22:50:27 2016 +0200
Commit: FRIGN <[email protected]>
CommitDate: Wed May 18 22:50:27 2016 +0200
[cc1] Use uchar for type-prop
diff --git a/cc1/cc1.h b/cc1/cc1.h
index bff2d4a..b7cf5c2 100644
--- 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 */