mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-28 09:14:43 +08:00
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
This commit is contained in:
parent
a456b43276
commit
13953f0a36
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user