summaryrefslogtreecommitdiffstats
path: root/clang/lib/Headers
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2008-12-22 07:34:23 +0000
committerAnders Carlsson <andersca@mac.com>2008-12-22 07:34:23 +0000
commit27046fc4e69c7dd1c5295f1eb0e5ae88318e1990 (patch)
tree354cf0c14238b2faacc4cbc8d619e8287501502c /clang/lib/Headers
parent5aa0c50e291c63d50dd4f5674b355013ab06e492 (diff)
downloadbcm5719-llvm-27046fc4e69c7dd1c5295f1eb0e5ae88318e1990.tar.gz
bcm5719-llvm-27046fc4e69c7dd1c5295f1eb0e5ae88318e1990.zip
Comment out _mm_insert_pi16 for now
llvm-svn: 61331
Diffstat (limited to 'clang/lib/Headers')
-rw-r--r--clang/lib/Headers/xmmintrin.devel.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/clang/lib/Headers/xmmintrin.devel.h b/clang/lib/Headers/xmmintrin.devel.h
index ecb2f5b794e..13456e7f3c8 100644
--- a/clang/lib/Headers/xmmintrin.devel.h
+++ b/clang/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)
{
OpenPOWER on IntegriCloud