Fix typo in preproc_constants.i testcase

We were testing 0xFF + 2 a second time instead of testing 0xFF - 2.
This commit is contained in:
Olly Betts 2024-09-13 15:12:57 +12:00
parent be81e1825e
commit acbaa3a757
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@
#define EXPR_MOD 0xFF % 2
#define EXPR_PLUS 0xFF + 2
#define EXPR_MINUS 0xFF + 2
#define EXPR_MINUS 0xFF - 2
#define EXPR_LSHIFT 0xFF << 2
#define EXPR_RSHIFT 0xFF >> 2