diff options
Diffstat (limited to 'nqasm.h')
-rw-r--r-- | nqasm.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -10,6 +10,11 @@ enum { ARG_UNARY_SUB, ARG_UNARY_NOT, ARG_UNARY_INV, + + ARG_ADD, + ARG_SUB, + ARG_MUL, + ARG_DIV, }; struct argument { @@ -17,7 +22,7 @@ struct argument { union { long value; char *label; - const struct argument *children[1]; + const struct argument *children[2]; }; }; |