| 64 | } |
| 65 | |
| 66 | inline bool test_load_store_u8_16_boundary() { |
| 67 | uint8_t input[16] = {0,255,0,255, 0,255,0,255, 0,255,0,255, 0,255,0,255}; |
| 68 | uint8_t output[16] = {0}; |
| 69 | simd_u8x16 v = load_u8_16(input); |
| 70 | store_u8_16(output, v); |
| 71 | return compare_u8(input, output, 16); |
| 72 | } |
| 73 | |
| 74 | // ============================================================================ |
| 75 | // u32x4 Load/Store Tests |
nothing calls this directly
no test coverage detected