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 | 0afd3a23cd32a1c9f28b0b424c4a3ca0931eef2b (patch) | |
tree | a462a74c3e6f6955436b48568269a674c7fbecee | |
parent | 2370ec6513d0728535b764fc93b572b651f8af05 (diff) | |
download | bcm5719-llvm-0afd3a23cd32a1c9f28b0b424c4a3ca0931eef2b.tar.gz bcm5719-llvm-0afd3a23cd32a1c9f28b0b424c4a3ca0931eef2b.zip |
fix a bug in the _MM_TRANSPOSE4_PS definition, patch by Brian Sumner from
PR6138
llvm-svn: 94669
-rw-r--r-- | clang/lib/Headers/xmmintrin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Headers/xmmintrin.h b/clang/lib/Headers/xmmintrin.h index e27060295a8..efb74e4fd60 100644 --- a/clang/lib/Headers/xmmintrin.h +++ b/clang/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) */ |