[cfe-commits] r61331 - /cfe/trunk/lib/Headers/xmmintrin.devel.h

Anders Carlsson andersca at mac.com
Sun Dec 21 23:34:24 PST 2008


Author: andersca
Date: Mon Dec 22 01:34:23 2008
New Revision: 61331

URL: http://llvm.org/viewvc/llvm-project?rev=61331&view=rev
Log:
Comment out _mm_insert_pi16 for now

Modified:
    cfe/trunk/lib/Headers/xmmintrin.devel.h

Modified: cfe/trunk/lib/Headers/xmmintrin.devel.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/xmmintrin.devel.h?rev=61331&r1=61330&r2=61331&view=diff

==============================================================================
--- cfe/trunk/lib/Headers/xmmintrin.devel.h (original)
+++ cfe/trunk/lib/Headers/xmmintrin.devel.h Mon Dec 22 01:34:23 2008
@@ -511,13 +511,15 @@
   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)
 {





More information about the cfe-commits mailing list