diff options
author | Anders Carlsson <andersca@mac.com> | 2008-12-22 07:34:23 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-12-22 07:34:23 +0000 |
commit | 8e28d24ce375176ceb883398e39cd626026c2730 (patch) | |
tree | 0625c6815c2b41ae30b308ce9112c4542be0b5a8 | |
parent | a6431dc8d2ebf54de31323bae1fd197dc165f8b2 (diff) |
Comment out _mm_insert_pi16 for now
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61331 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/xmmintrin.devel.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/Headers/xmmintrin.devel.h b/lib/Headers/xmmintrin.devel.h index ecb2f5b794..13456e7f3c 100644 --- a/lib/Headers/xmmintrin.devel.h +++ b/lib/Headers/xmmintrin.devel.h @@ -511,13 +511,15 @@ static inline int __attribute__((__always_inline__)) _mm_extract_pi16(__m64 a, i return b[(n == 0) ? 0 : (n == 1 ? 1 : (n == 2 ? 2 : 3))]; } +/* FIXME: Implement this. We could add a __builtin_insertelement function that's similar to + the already existing __builtin_shufflevector. +*/ +/* static inline __m64 __attribute__((__always_inline__)) _mm_insert_pi16(__m64 a, int d, int n) { - /* FIXME: Implement this. We could add a __builtin_insertelement function that's similar to - the already existing __builtin_shufflevector. - */ return (__m64){ 0LL }; } +*/ static inline __m64 __attribute__((__always_inline__)) _mm_max_pi16(__m64 a, __m64 b) { |