Merge pull request #15695 from BradleyWood/vsupportx86 · eclipse-openj9/openj9@8c8a1f3

File tree

1 file changed

lines changed

  • runtime/compiler/optimizer

1 file changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -376,7 +376,8 @@ class TR_VectorAPIExpansion : public TR::Optimization

376376

// General check for supported infrastructure

377377

if (!comp->target().cpu.isPower() &&

378378

!(comp->target().cpu.isZ() && comp->cg()->getSupportsVectorRegisters()) &&

379-

!comp->target().cpu.isARM64())

379+

!comp->target().cpu.isARM64() &&

380+

!comp->target().cpu.isX86())

380381

{

381382

length = TR::NoVectorLength;

382383

}