diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-01-16 23:13:42 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-01-16 23:13:42 +0000 |
commit | 41a5fc56b5d66372318a984e30bae5a832787691 (patch) | |
tree | 79da6e6f3378aeab741385a13a99d66fd6f853ee /lib | |
parent | 4944606962e32babc4d67804f29874ba4f6a2b41 (diff) |
Readd an open paren that was lost while reformatting code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Headers/avxintrin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Headers/avxintrin.h b/lib/Headers/avxintrin.h index 75528711c7..412d284f00 100644 --- a/lib/Headers/avxintrin.h +++ b/lib/Headers/avxintrin.h @@ -322,7 +322,7 @@ _mm256_blendv_pd(__m256d __a, __m256d __b, __m256d __c) static __inline __m256 __attribute__((__always_inline__, __nodebug__)) _mm256_blendv_ps(__m256 __a, __m256 __b, __m256 __c) { - return (__m256)__builtin_ia32_blendvps256 + return (__m256)__builtin_ia32_blendvps256( (__v8sf)__a, (__v8sf)__b, (__v8sf)__c); } |