aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cc.h b/cc.h
index 4054dcd..47a2931 100644
--- a/cc.h
+++ b/cc.h
@@ -255,13 +255,13 @@ struct decl {
struct type *type;
enum typequal qual;
struct value *value;
+ _Bool defined;
- /* objects and functions */
- struct list link;
- int align; /* may be more strict than type requires */
- _Bool tentative, defined;
+ /* link in list of tentative object definitions */
+ struct list tentative;
+ /* alignment of object storage (may be stricter than type requires) */
+ int align;
- /* built-ins */
enum builtinkind builtin;
};