Commit e2852d1f by Jakub Jelinek Committed by Jakub Jelinek

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
parent cf4d246b
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> 2005-06-01 Richard Guenther <rguenth@gcc.gnu.org>
* fold-const.c (fold_binary): Fix types in strlen vs. * fold-const.c (fold_binary): Fix types in strlen vs.
......
...@@ -1387,37 +1387,37 @@ _mm_cvtsi64x_si128 (long long __A) ...@@ -1387,37 +1387,37 @@ _mm_cvtsi64x_si128 (long long __A)
/* Casts between various SP, DP, INT vector types. Note that these do no /* Casts between various SP, DP, INT vector types. Note that these do no
conversion of values, they just change the type. */ conversion of values, they just change the type. */
static inline __m128 static __inline __m128
_mm_castpd_ps(__m128d __A) _mm_castpd_ps(__m128d __A)
{ {
return (__m128) __A; return (__m128) __A;
} }
static inline __m128i static __inline __m128i
_mm_castpd_si128(__m128d __A) _mm_castpd_si128(__m128d __A)
{ {
return (__m128i) __A; return (__m128i) __A;
} }
static inline __m128d static __inline __m128d
_mm_castps_pd(__m128 __A) _mm_castps_pd(__m128 __A)
{ {
return (__m128d) __A; return (__m128d) __A;
} }
static inline __m128i static __inline __m128i
_mm_castps_si128(__m128 __A) _mm_castps_si128(__m128 __A)
{ {
return (__m128i) __A; return (__m128i) __A;
} }
static inline __m128 static __inline __m128
_mm_castsi128_ps(__m128i __A) _mm_castsi128_ps(__m128i __A)
{ {
return (__m128) __A; return (__m128) __A;
} }
static inline __m128d static __inline __m128d
_mm_castsi128_pd(__m128i __A) _mm_castsi128_pd(__m128i __A)
{ {
return (__m128d) __A; return (__m128d) __A;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment