| 348 | } |
| 349 | |
| 350 | inline bool test_set1_f32_4() { |
| 351 | float output[4] = {0.0f}; |
| 352 | store_f32_4(output, set1_f32_4(3.14f)); |
| 353 | float expected[4] = {3.14f, 3.14f, 3.14f, 3.14f}; |
| 354 | return compare_f32(expected, output, 4); |
| 355 | } |
| 356 | |
| 357 | // ============================================================================ |
| 358 | // u32x4 Extract Test |
nothing calls this directly
no test coverage detected