aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/all.h
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-08 09:16:13 +0200
committerlemon <lsof@mailbox.org>2022-08-08 09:16:13 +0200
commitf8a8add7d0e74d20304b3194e836752a9986ddc3 (patch)
treed4c72f796c9b97c229f299b1632c6a5c9ffc3e37 /bootstrap/all.h
parent0a57a8979a75ce5398b34817c86a55c6d0552bca (diff)
direct access of eunion fields
Diffstat (limited to 'bootstrap/all.h')
-rw-r--r--bootstrap/all.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap/all.h b/bootstrap/all.h
index 1629455..373aac9 100644
--- a/bootstrap/all.h
+++ b/bootstrap/all.h
@@ -312,6 +312,7 @@ enum exprtype {
Eslice,
Elen,
Eeuini,
+ Eeutag,
};
struct blockstmt {
@@ -353,7 +354,7 @@ struct expr {
struct expr *lhs, *rhs;
} index;
struct blockstmt block;
- struct expr *child; // cast, len
+ struct expr *child; // cast, len, eutag
struct {
i64 i;
const char *vname;