* @brief Debug function to print a vector of ints. */
| 376 | * @brief Debug function to print a vector of ints. |
| 377 | */ |
| 378 | ASTCENC_SIMD_INLINE void print(vint4 a) |
| 379 | { |
| 380 | ASTCENC_ALIGNAS int v[4]; |
| 381 | storea(a, v); |
| 382 | printf("v4_i32:\n %8d %8d %8d %8d\n", |
| 383 | v[0], v[1], v[2], v[3]); |
| 384 | } |
| 385 | |
| 386 | /** |
| 387 | * @brief Debug function to print a vector of ints. |