[AVX512] Fix typo in r226298

Hal noticed that the double/float got mixed up on the parameters for
these.

llvm-svn: 258108
This commit is contained in:
Adam Nemet 2016-01-19 02:02:25 +00:00
parent b414b2f54b
commit e708747129
1 changed files with 2 additions and 2 deletions

View File

@ -2648,7 +2648,7 @@ _mm512_loadu_ps(float const *__p)
}
static __inline __m512 __DEFAULT_FN_ATTRS
_mm512_load_ps(double const *__p)
_mm512_load_ps(float const *__p)
{
return (__m512) __builtin_ia32_loadaps512_mask ((const __v16sf *)__p,
(__v16sf)
@ -2657,7 +2657,7 @@ _mm512_load_ps(double const *__p)
}
static __inline __m512d __DEFAULT_FN_ATTRS
_mm512_load_pd(float const *__p)
_mm512_load_pd(double const *__p)
{
return (__m512d) __builtin_ia32_loadapd512_mask ((const __v8df *)__p,
(__v8df)