aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cc.h b/cc.h
index 9de12b3..fbf6075 100644
--- a/cc.h
+++ b/cc.h
@@ -188,6 +188,7 @@ struct member {
struct type {
enum typekind kind;
+ enum typeprop prop;
int align;
uint64_t size;
struct repr *repr;
@@ -390,7 +391,7 @@ _Bool consume(int);
/* type */
-struct type *mktype(enum typekind);
+struct type *mktype(enum typekind, enum typeprop);
struct type *mkpointertype(struct type *, enum typequal);
struct type *mkarraytype(struct type *, enum typequal, uint64_t);