| Index: crosstest/test_arith.cpp
|
| diff --git a/crosstest/test_arith.cpp b/crosstest/test_arith.cpp
|
| index 6f8aec4f0d6dfac8dadd0791ea6263e47e985491..446ea04f234b4cac783ba6c1089d16aa05a8378e 100644
|
| --- a/crosstest/test_arith.cpp
|
| +++ b/crosstest/test_arith.cpp
|
| @@ -18,7 +18,7 @@
|
|
|
| #include "test_arith.h"
|
|
|
| -#define X(inst, op, isdiv) \
|
| +#define X(inst, op, isdiv, isshift) \
|
| bool test##inst(bool a, bool b) { return a op b; } \
|
| uint8_t test##inst(uint8_t a, uint8_t b) { return a op b; } \
|
| uint16_t test##inst(uint16_t a, uint16_t b) { return a op b; } \
|
| @@ -30,7 +30,7 @@
|
| UINTOP_TABLE
|
| #undef X
|
|
|
| -#define X(inst, op, isdiv) \
|
| +#define X(inst, op, isdiv, isshift) \
|
| bool test##inst(bool a, bool b) { return a op b; } \
|
| myint8_t test##inst(myint8_t a, myint8_t b) { return a op b; } \
|
| int16_t test##inst(int16_t a, int16_t b) { return a op b; } \
|
|
|