ids: Make room for a few additional 1-byte commands

Move `nand`, `nor`, `implies`, `equiv` and `excludes` to the two-bytes
section of identifiers.

Signed-off-by: Christophe de Dinechin <christophe@dinechin.org>
This commit is contained in:
Christophe de Dinechin 2024-03-29 19:38:39 +01:00
parent 4bad5f26b2
commit 221795f308

View file

@ -245,11 +245,6 @@ CMD(False)
OP(And, "and")
OP(Or, "or")
OP(Xor, "xor")
OP(NAnd, "nand")
OP(NOr, "nor")
OP(Implies, "implies")
OP(Equiv, "equiv")
OP(Excludes, "excludes")
OP(Not, "not")
// Tests
@ -593,6 +588,13 @@ NAMED(SLC, "ShiftLeftCount")
NAMED(SRC, "ShiftRightCount")
NAMED(ASRC, "ArithmeticShiftRightCount")
// Binary operations
OP(NAnd, "nand")
OP(NOr, "nor")
OP(Implies, "implies")
OP(Equiv, "equiv")
OP(Excludes, "excludes")
// Characters
NAMED(CharToUnicode, "Char→Code") ALIAS(CharToUnicode, "Codepoint")
ALIAS(CharToUnicode, "Num")