diff options
Diffstat (limited to 'expr.h')
-rw-r--r-- | expr.h | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -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; |