diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-15 13:37:44 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-15 13:37:44 +0000 |
commit | 111684eea03ea162897134f6371a2ea06cd3e456 (patch) | |
tree | 3f837846caf588625f040c80b92525abed604d01 | |
parent | 260328c27ddbad6e6d81a84e68a9a4aedccbfbf3 (diff) |
Headers/xopintrin.h: Try to fix r158492. Did you mean, mm256?
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158521 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/xopintrin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Headers/xopintrin.h b/lib/Headers/xopintrin.h index e5b8d92b65..d107be4a42 100644 --- a/lib/Headers/xopintrin.h +++ b/lib/Headers/xopintrin.h @@ -395,15 +395,15 @@ _mm_frcz_pd(__m128d __A) } static __inline__ __m256 __attribute__((__always_inline__, __nodebug__)) -_mm_frcz_ps(__m256 __A) +_mm256_frcz_ps(__m256 __A) { - return (__m256)__builtin_ia32_vfrczps((__v4sf)__A); + return (__m256)__builtin_ia32_vfrczps256((__v8sf)__A); } static __inline__ __m256d __attribute__((__always_inline__, __nodebug__)) -_mm_frcz_pd(__m256d __A) +_mm256_frcz_pd(__m256d __A) { - return (__m256d)__builtin_ia32_vfrczpd((__v2df)__A); + return (__m256d)__builtin_ia32_vfrczpd256((__v4df)__A); } #endif /* __XOP__ */ |