diff options
author | Anders Carlsson <andersca@mac.com> | 2008-12-22 17:42:23 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-12-22 17:42:23 +0000 |
commit | 398082e33c6d2e3c22733b1444228ea4b10b353f (patch) | |
tree | 72ccd3e6b59815f663c9a1e253debbf2283a5d4e | |
parent | a5a4166f8cb04490b7b27355874edfb98837cd45 (diff) |
Fix test failures noticed by Fariborz.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61334 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/xmmintrin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Headers/xmmintrin.h b/lib/Headers/xmmintrin.h index 13456e7f3c..09cd92b3cb 100644 --- a/lib/Headers/xmmintrin.h +++ b/lib/Headers/xmmintrin.h @@ -30,8 +30,12 @@ #include <mmintrin.h> +typedef float __v4sf __attribute__((__vector_size__(16))); typedef float __m128 __attribute__((__vector_size__(16))); +#include <mm_malloc.h> +#include <emmintrin.h> + static inline __m128 __attribute__((__always_inline__)) _mm_add_ss(__m128 a, __m128 b) { return __builtin_ia32_addss(a, b); |