Skip to content

Commit

Permalink
Untested intrinsics had wrong signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Piolat committed Nov 11, 2024
1 parent ca0291d commit 95c610c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/inteli/avxintrin.d
Original file line number Diff line number Diff line change
Expand Up @@ -2548,7 +2548,7 @@ __m256d _mm256_permute2f128_pd(int imm8)(__m256d a, __m256d b) pure @safe
return cast(__m256d) _mm256_permute2f128_si256!imm8(cast(__m256i)a, cast(__m256i)b);
}
///ditto
__m256d _mm256_permute2f128_ps(int imm8)(__m256 a, __m256 b) pure @safe
__m256 _mm256_permute2f128_ps(int imm8)(__m256 a, __m256 b) pure @safe
{
return cast(__m256) _mm256_permute2f128_si256!imm8(cast(__m256i)a, cast(__m256i)b);
}
Expand Down

0 comments on commit 95c610c

Please sign in to comment.