emmintrin.h (_mm_extract_epi16): Correct the number of closing parenthesis.
authorAndrew Pinski <pinskia@physics.uc.edu>
Wed, 16 Mar 2005 14:48:51 +0000 (14:48 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Wed, 16 Mar 2005 14:48:51 +0000 (06:48 -0800)
2005-03-16  Andrew Pinski  <pinskia@physics.uc.edu>

        * config/i386/emmintrin.h (_mm_extract_epi16): Correct the number
        of closing parenthesis.

From-SVN: r96556

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

index 36a5e8de52a257c347680aa40527f4667b79d602..2afc12f7ba6f88cc90148c41dc3f36140527b794 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-16  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * config/i386/emmintrin.h (_mm_extract_epi16): Correct the number
+       of closing parenthesis.
+
 2005-03-16  Kazu Hirata  <kazu@cs.umass.edu>
 
        * builtins.c (expand_movstr): Update a call to
index 3bf5fd81ff15100ded6f12b92a309345c0e96927..45624d201907058c86bf9cda4ab3d5ec55cb738a 100644 (file)
@@ -1266,7 +1266,7 @@ _mm_insert_epi16 (__m128i const __A, int const __D, int const __N)
 }
 #else
 #define _mm_extract_epi16(A, N) \
-  ((int) __builtin_ia32_vec_ext_v8hi ((__v8hi)(A), (N))
+  ((int) __builtin_ia32_vec_ext_v8hi ((__v8hi)(A), (N)))
 #define _mm_insert_epi16(A, D, N) \
   ((__m128i) __builtin_ia32_vec_set_v8hi ((__v8hi)(A), (D), (N)))
 #endif