Re: [PATCH] Fix ISA masks for wmmintrin.h builtins (PR target/84335)

2018-02-13 Thread Uros Bizjak
On Mon, Feb 12, 2018 at 10:53 PM, Jakub Jelinek wrote: > Hi! > > While the documentation only mentions AES resp. PCLMUL CPUIDs for these > intrinsics, they use and return V2DImode vectors and V2DImode is > only in VALID_SSE2_REG_MODE and VALID_AVX512VL_128_REG_MODE, so without >

[PATCH] Fix ISA masks for wmmintrin.h builtins (PR target/84335)

2018-02-12 Thread Jakub Jelinek
Hi! While the documentation only mentions AES resp. PCLMUL CPUIDs for these intrinsics, they use and return V2DImode vectors and V2DImode is only in VALID_SSE2_REG_MODE and VALID_AVX512VL_128_REG_MODE, so without -msse2 we can't create registers with that mode. Fixed thusly,