From acbaa3a757c745fb4f524de68cb1ec3d14b65412 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Fri, 13 Sep 2024 15:12:57 +1200 Subject: [PATCH] Fix typo in preproc_constants.i testcase We were testing 0xFF + 2 a second time instead of testing 0xFF - 2. --- Examples/test-suite/preproc_constants.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/test-suite/preproc_constants.i b/Examples/test-suite/preproc_constants.i index a8eef3347..6d8ed12ff 100644 --- a/Examples/test-suite/preproc_constants.i +++ b/Examples/test-suite/preproc_constants.i @@ -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