| 76 | // ============================================================================ |
| 77 | |
| 78 | inline bool test_load_store_u32_4() { |
| 79 | uint32_t input[4] = {0x12345678, 0x9ABCDEF0, 0xFEDCBA98, 0x76543210}; |
| 80 | uint32_t output[4] = {0}; |
| 81 | simd_u32x4 v = load_u32_4(input); |
| 82 | store_u32_4(output, v); |
| 83 | return compare_u32(input, output, 4); |
| 84 | } |
| 85 | |
| 86 | inline bool test_load_store_u32_4_boundary() { |
| 87 | uint32_t input[4] = {0, 0xFFFFFFFF, 1, 0x80000000}; |
nothing calls this directly
no test coverage detected