diff options
author | Eric Christopher <echristo@apple.com> | 2010-03-26 00:51:28 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-03-26 00:51:28 +0000 |
commit | 054c27674efe41608eb5546fe16e43f4b3777407 (patch) | |
tree | 216350bf18116af23fc52ef54ed35fe5b71f7530 | |
parent | 9f17d410044af23fe426c504bc969156f0fc248d (diff) |
This is just a simple v4si * v4si, make it so.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99587 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/smmintrin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Headers/smmintrin.h b/lib/Headers/smmintrin.h index 35e7600b00..e271f9953c 100644 --- a/lib/Headers/smmintrin.h +++ b/lib/Headers/smmintrin.h @@ -110,7 +110,7 @@ _mm_blend_epi16 (__m128i __V1, __m128i __V2, const int __M) static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) _mm_mullo_epi32 (__m128i __V1, __m128i __V2) { - return (__m128i) __builtin_ia32_pmulld128((__v4si)__V1, (__v4si)__V2); + return (__m128i) ((__v4si)__V1 * (__v4si)__V2); } static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) |