| Index: crosstest/test_arith.h
|
| diff --git a/crosstest/test_arith.h b/crosstest/test_arith.h
|
| index 855c6072dbecb6b182bade7796a73d7d97c6dad5..2d8f5726d31a6bf157e4d76d42f22cdd84471588 100644
|
| --- a/crosstest/test_arith.h
|
| +++ b/crosstest/test_arith.h
|
| @@ -18,7 +18,10 @@
|
| #include "vectors.h"
|
|
|
| #define X(inst, op, isdiv, isshift) \
|
| - bool test##inst(bool a, bool b); \
|
| + uint8_t testBool##inst(uint8_t a, uint8_t b); \
|
| + uint16_t testBool##inst(uint16_t a, uint16_t b); \
|
| + uint32_t testBool##inst(uint32_t a, uint32_t b); \
|
| + uint64_t testBool##inst(uint64_t a, uint64_t b); \
|
| uint8_t test##inst(uint8_t a, uint8_t b); \
|
| uint16_t test##inst(uint16_t a, uint16_t b); \
|
| uint32_t test##inst(uint32_t a, uint32_t b); \
|
| @@ -30,7 +33,6 @@ UINTOP_TABLE
|
| #undef X
|
|
|
| #define X(inst, op, isdiv, isshift) \
|
| - bool test##inst(bool a, bool b); \
|
| myint8_t test##inst(myint8_t a, myint8_t b); \
|
| int16_t test##inst(int16_t a, int16_t b); \
|
| int32_t test##inst(int32_t a, int32_t b); \
|
|
|