diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-23 00:31:44 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-23 00:31:44 +0000 |
commit | 8a4a17f4732b4d070d6b67896a36e95080cccbfc (patch) | |
tree | 37ccb20d8519567d5a7c1117e7894bc8004a318a /gcc/config/i386/mmintrin.h | |
parent | 5cafaee128c56ddebf0dac989687c4834c2665cf (diff) | |
download | gcc-8a4a17f4732b4d070d6b67896a36e95080cccbfc.tar.gz |
* config/i386/mmintrin.h (_mm_add_si64): Only define for SSE2.
(_mm_sub_si64): Likewise.
* config/i386/xmmintrin.h (_mm_shuffle_pi16, _m_pshufw): Likewise.
* gcc.target/i386/sse-7.c: Use -msse2.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@108996 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/mmintrin.h')
-rw-r--r-- | gcc/config/i386/mmintrin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/i386/mmintrin.h b/gcc/config/i386/mmintrin.h index 252364b803e..b98caf0cac2 100644 --- a/gcc/config/i386/mmintrin.h +++ b/gcc/config/i386/mmintrin.h @@ -274,11 +274,13 @@ _m_paddd (__m64 __m1, __m64 __m2) } /* Add the 64-bit values in M1 to the 64-bit values in M2. */ +#ifdef __SSE2__ static __inline __m64 __attribute__((__always_inline__)) _mm_add_si64 (__m64 __m1, __m64 __m2) { return (__m64) __builtin_ia32_paddq ((long long)__m1, (long long)__m2); } +#endif /* Add the 8-bit values in M1 to the 8-bit values in M2 using signed saturated arithmetic. */ @@ -376,11 +378,13 @@ _m_psubd (__m64 __m1, __m64 __m2) } /* Add the 64-bit values in M1 to the 64-bit values in M2. */ +#ifdef __SSE2__ static __inline __m64 __attribute__((__always_inline__)) _mm_sub_si64 (__m64 __m1, __m64 __m2) { return (__m64) __builtin_ia32_psubq ((long long)__m1, (long long)__m2); } +#endif /* Subtract the 8-bit values in M2 from the 8-bit values in M1 using signed saturating arithmetic. */ |