re PR target/24323 (_MM_TRANSPOSE4_PS could be improved)

2005-12-05  Dale Johannesen  <dalej@apple.com>

        * config/i386/xmmintrin.h (_MM_TRANSPOSE4_PS):  Fix to match
        what was approved (PR 24323).

From-SVN: r108080
This commit is contained in:
Dale Johannesen 2005-12-05 23:04:28 +00:00 committed by Dale Johannesen
parent 0499d0accb
commit 3287a0401c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-12-05 Dale Johannesen <dalej@apple.com>
* config/i386/xmmintrin.h (_MM_TRANSPOSE4_PS): Fix to match
what was approved (PR 24323).
2005-12-05 Gabriel Dos Reis <gdr@integrable-solutions.net>
* doc/c-tree.texi (Function Bodies): Remove description of

View File

@ -1198,8 +1198,8 @@ _mm_pause (void)
do { \
__v4sf __r0 = (row0), __r1 = (row1), __r2 = (row2), __r3 = (row3); \
__v4sf __t0 = __builtin_ia32_unpcklps (__r0, __r1); \
__v4sf __t2 = __builtin_ia32_unpcklps (__r2, __r3); \
__v4sf __t1 = __builtin_ia32_unpckhps (__r0, __r1); \
__v4sf __t1 = __builtin_ia32_unpcklps (__r2, __r3); \
__v4sf __t2 = __builtin_ia32_unpckhps (__r0, __r1); \
__v4sf __t3 = __builtin_ia32_unpckhps (__r2, __r3); \
(row0) = __builtin_ia32_movlhps (__t0, __t1); \
(row1) = __builtin_ia32_movhlps (__t1, __t0); \