We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c033ac8 commit 5e31f8eCopy full SHA for 5e31f8e
external/basisu/encoder/cppspmd_sse.h
@@ -493,7 +493,7 @@ struct spmd_kernel
493
CPPSPMD_FORCE_INLINE vfloat& store(vfloat&& dst, const vfloat& src)
494
{
495
dst.m_value = blendv_mask_ps(dst.m_value, src.m_value, _mm_castsi128_ps(m_exec.m_mask));
496
- return dst;
+ return { dst };
497
}
498
499
CPPSPMD_FORCE_INLINE vfloat& store_all(vfloat& dst, const vfloat& src)
@@ -505,7 +505,7 @@ struct spmd_kernel
505
CPPSPMD_FORCE_INLINE vfloat& store_all(vfloat&& dst, const vfloat& src)
506
507
dst.m_value = src.m_value;
508
509
510
511
// Linear ref to floats
0 commit comments