OSDN Git Service

* config/i386/emmintrin.h (_mm_castpd_ps, _mm_castpd_si128,
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Jun 2005 10:02:31 +0000 (10:02 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Jun 2005 10:02:31 +0000 (10:02 +0000)
_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

gcc/ChangeLog
gcc/config/i386/emmintrin.h

index c906a25..c976372 100644 (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.
index 45624d2..6680b3b 100644 (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;