Branch: Tag:

2020-11-02

2020-11-02 21:40:29 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Compiler [Typechecker]: Added some missing symbolic names for binops.

This reduces warnings from the compiler when these obscure operations
actually are implemented.

99:    PT_BINOP_XNOR = 0x09, /* ~(A ^ B) */    PT_BINOP_NAND = 0x0e, /* ~(A & B) */    +  PT_BINOP_A_OR_NOT_B = 0x0b, /* A | ~B */ +  PT_BINOP_NOT_A_OR_B = 0x0d, /* ~A | B */ +     PT_BINOP_A = 0x03,    PT_BINOP_B = 0x05,    PT_BINOP_NOT_A = 0x0c,
106:       PT_BINOP_NONE = 0x00,    PT_BINOP_ALL = 0x0f, -  -  /* Missing: -  * -  * 0x0b (0b1011) A | ~B -  * 0x0d (0b1101) B | ~A -  */ +     };      /*