| Index: crosstest/mem_intrin_main.cpp
|
| diff --git a/crosstest/mem_intrin_main.cpp b/crosstest/mem_intrin_main.cpp
|
| index 76df66a1d857811d2be1cee9294a0115deff61f8..b529273f8b59344ccef66d5d6d264d6e30ca32d7 100644
|
| --- a/crosstest/mem_intrin_main.cpp
|
| +++ b/crosstest/mem_intrin_main.cpp
|
| @@ -40,8 +40,8 @@ void testVariableLen(size_t &TotalTests, size_t &Passes, size_t &Failures) {
|
| for (size_t len = 4; len < 128; ++len) { \
|
| for (uint8_t init_val = 0; init_val < 100; ++init_val) { \
|
| ++TotalTests; \
|
| - int llc_result = test_func(buf, (void *)buf2, init_val, len); \
|
| - int sz_result = Subzero_::test_func(buf, (void *)buf2, init_val, len); \
|
| + int llc_result = test_func(buf, buf2, init_val, len); \
|
| + int sz_result = Subzero_::test_func(buf, buf2, init_val, len); \
|
| if (llc_result == sz_result) { \
|
| ++Passes; \
|
| } else { \
|
|
|