diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-27 07:54:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-27 07:54:50 +0000 |
commit | 9afb227116f675fdaaa9552ea93e4190253d77df (patch) | |
tree | 31bbeff2ef12ec77111bcd21f1b3c7ef6197fab8 | |
parent | f1f70b479cffa9a96bbd4f9a111343a94e27a6c2 (diff) |
fix a bug in the _MM_TRANSPOSE4_PS definition, patch by Brian Sumner from
PR6138
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94669 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/xmmintrin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Headers/xmmintrin.h b/lib/Headers/xmmintrin.h index e27060295a..efb74e4fd6 100644 --- a/lib/Headers/xmmintrin.h +++ b/lib/Headers/xmmintrin.h @@ -895,7 +895,7 @@ do { \ (row0) = _mm_movelh_ps(tmp0, tmp2); \ (row1) = _mm_movehl_ps(tmp2, tmp0); \ (row2) = _mm_movelh_ps(tmp1, tmp3); \ - (row3) = _mm_movelh_ps(tmp3, tmp1); \ + (row3) = _mm_movehl_ps(tmp3, tmp1); \ } while (0) /* Ugly hack for backwards-compatibility (compatible with gcc) */ |