Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2208)

Unified Diff: asan/asan_clang_Darwin/lib/clang/3.1/include/tmmintrin.h

Issue 8699006: Update the ASan Mac binaries to r1096 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: asan/asan_clang_Darwin/lib/clang/3.1/include/tmmintrin.h
===================================================================
--- asan/asan_clang_Darwin/lib/clang/3.1/include/tmmintrin.h (revision 111575)
+++ asan/asan_clang_Darwin/lib/clang/3.1/include/tmmintrin.h (working copy)
@@ -66,9 +66,16 @@
return (__m128i)__builtin_ia32_pabsd128((__v4si)a);
}
-#define _mm_alignr_epi8(a, b, n) (__builtin_ia32_palignr128((a), (b), (n)))
-#define _mm_alignr_pi8(a, b, n) (__builtin_ia32_palignr((a), (b), (n)))
+#define _mm_alignr_epi8(a, b, n) __extension__ ({ \
+ __m128i __a = (a); \
+ __m128i __b = (b); \
+ (__m128i)__builtin_ia32_palignr128((__v16qi)__a, (__v16qi)__b, (n)); })
+#define _mm_alignr_pi8(a, b, n) __extension__ ({ \
+ __m64 __a = (a); \
+ __m64 __b = (b); \
+ (__m64)__builtin_ia32_palignr((__v8qi)__a, (__v8qi)__b, (n)); })
+
static __inline__ __m128i __attribute__((__always_inline__, __nodebug__))
_mm_hadd_epi16(__m128i a, __m128i b)
{
« no previous file with comments | « asan/asan_clang_Darwin/lib/clang/3.1/include/smmintrin.h ('k') | asan/asan_clang_Darwin/lib/clang/3.1/include/xmmintrin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698