8211272: x86_32 build failures after JDK-8210764 (Update avx512 implementation)

Reviewed-by: rkennke, kvn
This commit is contained in:
Aleksey Shipilev 2018-09-28 18:28:48 +02:00
parent deb0e6503d
commit e2baf30529

View File

@ -2403,8 +2403,9 @@ void LIR_Assembler::intrinsic_op(LIR_Code code, LIR_Opr value, LIR_Opr tmp, LIR_
if (UseAVX > 2 && !VM_Version::supports_avx512vl()) {
assert(tmp->is_valid(), "need temporary");
__ vpandn(dest->as_xmm_double_reg(), tmp->as_xmm_double_reg(), value->as_xmm_double_reg(), 2);
} else {
} else
#endif
{
if (dest->as_xmm_double_reg() != value->as_xmm_double_reg()) {
__ movdbl(dest->as_xmm_double_reg(), value->as_xmm_double_reg());
}