Commit 3287a040 by Dale Johannesen Committed by Dale Johannesen

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
parent 0499d0ac
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
......
......@@ -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); \
......
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