Commit 13953f0a by Andrew Pinski Committed by Andrew Pinski

emmintrin.h (_mm_extract_epi16): Correct the number of closing parenthesis.

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