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 3f4a026..1cd1b32 100644
--- a/cc.h
+++ b/cc.h
@@ -215,7 +215,7 @@ struct type {
enum typequal ptrqual;
} array;
struct {
- bool isvararg, isnoreturn;
+ bool isvararg;
struct decl *params;
size_t nparam;
} func;
@@ -283,6 +283,7 @@ struct decl {
struct {
/* the function might have an "inline definition" (C11 6.7.4p7) */
bool inlinedefn;
+ bool isnoreturn;
} func;
enum builtinkind builtin;
} u;