commit 5e5e301e866e1eeb4523b9ecae6a2a327c019a08 parent f059f8b1cf415a7fba36f6b96206bb3d6776e41d Author: Quentin Carbonneaux <quentin@c9x.me> Date: Thu, 6 Aug 2020 10:34:42 +0200 fix a typo in call's BNF Thanks to Jakob for pointing this out. Diffstat:
M | doc/il.txt | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/il.txt b/doc/il.txt @@ -749,9 +749,9 @@ single-precision floating point number `%f` into `%rs`. CALL := [%IDENT '=' ABITY] 'call' VAL '(' (ARG), ')' ARG := - ABITY %IDENT # Regular argument - | 'env' VAL # Environment argument (first) - | '...' # Variadic marker (last) + ABITY VAL # Regular argument + | 'env' VAL # Environment argument (first) + | '...' # Variadic marker (last) ABITY := BASETY | :IDENT