diff options
author | Chimrod <> | 2023-09-26 21:44:37 +0200 |
---|---|---|
committer | Chimrod <> | 2023-09-26 21:44:37 +0200 |
commit | 46fd5a31d2e07b9df10d07dd900b529aca06a795 (patch) | |
tree | 471ab32b8d0674d0ab6cc58318afb844a88a5a6b /lib/qsp_instruction.mly | |
parent | b65767c276124fff7412ef0112929d3aab16553b (diff) |
Added the missing *= operator
Diffstat (limited to 'lib/qsp_instruction.mly')
-rw-r--r-- | lib/qsp_instruction.mly | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/qsp_instruction.mly b/lib/qsp_instruction.mly index cfc6124..cc0520f 100644 --- a/lib/qsp_instruction.mly +++ b/lib/qsp_instruction.mly @@ -64,6 +64,8 @@ assignation_operator: | EQUAL { T.Eq' } | INCR { T.Inc } | DECR { T.Decr } + | DECR { T.Decr } + | MULT_EQUAL { T.Mult } inline_instruction: | hd = inline_instruction |