Skip to content

Commit

Permalink
[CLANG] [AVX512] [BUILTIN] Adding prol{d|q|w}{128|256|512} builtin to…
Browse files Browse the repository at this point in the history
… clang .

Fixing problem with the lib/include/avx512vlintrin.h file. 
Adding one more _ to the prefix of _extension__ -> __extension__.

Differential Revision: http://reviews.llvm.org/D16985

llvm-svn: 261518
  • Loading branch information
Michael Zuckerman authored and Michael Zuckerman committed Feb 22, 2016
1 parent 9914dbd commit 477e0a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/lib/Headers/avx512vlintrin.h
Expand Up @@ -4981,7 +4981,7 @@ _mm256_maskz_cvtepu16_epi64 (__mmask8 __U, __m128i __A)
_mm256_setzero_si256 (),\
(__mmask8) (u)); })

#define _mm_rol_epi64(a, b) _extension__ ({\
#define _mm_rol_epi64(a, b) __extension__ ({\
(__m128i)__builtin_ia32_prolq128_mask((__v2di) (a), (b),\
(__v2di)\
_mm_setzero_di (),\
Expand Down

0 comments on commit 477e0a3

Please sign in to comment.