| 104 | // ============================================================================ |
| 105 | |
| 106 | inline bool test_load_store_f32_4() { |
| 107 | float input[4] = {1.5f, 2.5f, 3.5f, 4.5f}; |
| 108 | float output[4] = {0.0f}; |
| 109 | simd_f32x4 v = load_f32_4(input); |
| 110 | store_f32_4(output, v); |
| 111 | return compare_f32(input, output, 4); |
| 112 | } |
| 113 | |
| 114 | inline bool test_load_store_f32_4_special() { |
| 115 | float input[4] = {0.0f, -0.0f, 1e30f, -1e30f}; |
nothing calls this directly
no test coverage detected