Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Regx2::store() and Regx2::storeu()
The implentations of `Regx2::store()` and `Regx2::storeu()` with `MIPP_NO_INTRINSICS` are incorrect because `Reg<T>` cannot be implicitly converted to `T`. The value in `Reg<T>` should be accessed explicitly. In contrast, `Regx2::load()` and `Regx2::loadu()` use the exact reverse assignment approach but work correctly because `Reg<T>` includes a constructor `Reg(const T val)`, which allows implicit conversion from `T` to `Reg<T>`.
- Loading branch information