scc

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

commit ab709ce7d4bc60982fa69b0956e58e9330892f2c
parent 5a6e26e28744a0fa4efe9f6e032bd40c647b3749
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date:   Tue,  9 Jun 2026 08:28:42 +0200

cc1: Minor changes in comments

Diffstat:
Msrc/cmd/scc-cc/cc1/cc1.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cmd/scc-cc/cc1/cc1.h b/src/cmd/scc-cc/cc1/cc1.h @@ -24,9 +24,9 @@ enum { enum typeprops { TDEFINED = 1 << 0, /* type defined */ TSIGNED = 1 << 1, /* signedness of the type */ - TINTEGER = 1 << 2, /* the type is INT of enum */ + TINTEGER = 1 << 2, /* the type is INT or ENUM */ TARITH = 1 << 3, /* the type is INT, ENUM or FLOAT */ - TAGGREG = 1 << 4, /* the type is struct or union */ + TAGGREG = 1 << 4, /* the type is STRUCT or UNION */ TK_R = 1 << 5, /* this is a K&R-function */ TELLIPSIS= 1 << 6, /* this function has an ellipsis par */ TFUNDEF = 1 << 7, /* function definition */