emmintrin.h (_mm_castpd_ps, [...]): Use __inline instead of inline.

* 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.

From-SVN: r100438
This commit is contained in:
Jakub Jelinek 2005-06-01 12:02:31 +02:00 committed by Jakub Jelinek
parent cf4d246bce
commit e2852d1f5c
2 changed files with 12 additions and 6 deletions

View File

@ -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.

View File

@ -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;