Skip to content

Commit 95c610c

Browse files
author
Guillaume Piolat
committed
Untested intrinsics had wrong signature
1 parent ca0291d commit 95c610c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/inteli/avxintrin.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2548,7 +2548,7 @@ __m256d _mm256_permute2f128_pd(int imm8)(__m256d a, __m256d b) pure @safe
25482548
return cast(__m256d) _mm256_permute2f128_si256!imm8(cast(__m256i)a, cast(__m256i)b);
25492549
}
25502550
///ditto
2551-
__m256d _mm256_permute2f128_ps(int imm8)(__m256 a, __m256 b) pure @safe
2551+
__m256 _mm256_permute2f128_ps(int imm8)(__m256 a, __m256 b) pure @safe
25522552
{
25532553
return cast(__m256) _mm256_permute2f128_si256!imm8(cast(__m256i)a, cast(__m256i)b);
25542554
}

0 commit comments

Comments
 (0)