diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-01 10:02:31 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-01 10:02:31 +0000 |
commit | 202604369ad3eb7d128382284913fd548254f679 (patch) | |
tree | 5b98757162653df2b87054b90380364480e908d9 | |
parent | 0e633d823fb4a45eec343ee56a98888f9e24b26e (diff) | |
download | gcc-202604369ad3eb7d128382284913fd548254f679.tar.gz |
* config/i386/emmintrin.h (_mm_castpd_ps, _mm_castpd_si128,
_mm_castps_pd, _mm_castps_si128, _mm_castsi128_ps, _mm_castsi128_pd):
Use __inline instead of inline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100438 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/emmintrin.h | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c906a255fbd..c9763721727 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-06-01 Jakub Jelinek <jakub@redhat.com> + + * config/i386/emmintrin.h (_mm_castpd_ps, _mm_castpd_si128, + _mm_castps_pd, _mm_castps_si128, _mm_castsi128_ps, _mm_castsi128_pd): + Use __inline instead of inline. + 2005-06-01 Richard Guenther <rguenth@gcc.gnu.org> * fold-const.c (fold_binary): Fix types in strlen vs. diff --git a/gcc/config/i386/emmintrin.h b/gcc/config/i386/emmintrin.h index 45624d20190..6680b3bfabd 100644 --- a/gcc/config/i386/emmintrin.h +++ b/gcc/config/i386/emmintrin.h @@ -1387,37 +1387,37 @@ _mm_cvtsi64x_si128 (long long __A) /* Casts between various SP, DP, INT vector types. Note that these do no conversion of values, they just change the type. */ -static inline __m128 +static __inline __m128 _mm_castpd_ps(__m128d __A) { return (__m128) __A; } -static inline __m128i +static __inline __m128i _mm_castpd_si128(__m128d __A) { return (__m128i) __A; } -static inline __m128d +static __inline __m128d _mm_castps_pd(__m128 __A) { return (__m128d) __A; } -static inline __m128i +static __inline __m128i _mm_castps_si128(__m128 __A) { return (__m128i) __A; } -static inline __m128 +static __inline __m128 _mm_castsi128_ps(__m128i __A) { return (__m128) __A; } -static inline __m128d +static __inline __m128d _mm_castsi128_pd(__m128i __A) { return (__m128d) __A; |