aboutsummaryrefslogtreecommitdiff
path: root/expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'expr.h')
-rw-r--r--expr.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/expr.h b/expr.h
index 5667839..e660848 100644
--- a/expr.h
+++ b/expr.h
@@ -6,7 +6,7 @@ enum exprkind {
/* postfix expression */
EXPRCALL,
- EXPRMEMBER,
+ /* member E.M gets transformed to *(typeof(E.M) *)((char *)E + offsetof(typeof(E), M)) */
EXPRINCDEC,
EXPRCOMPOUND,
/* subscript E1[E2] gets transformed to *((E1)+(E2)) */
@@ -49,18 +49,14 @@ struct expr {
size_t nargs;
} call;
struct {
- struct expr *base;
- size_t offset;
- } member;
+ struct init *init;
+ } compound;
struct {
int op;
_Bool post;
struct expr *base;
} incdec;
struct {
- struct init *init;
- } compound;
- struct {
int op;
struct expr *base;
} unary;