Merge pull request #22445 from BradleyWood/x86_vapi_256_512 · eclipse-openj9/openj9@9108917

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 9108917

authored

Merge pull request #22445 from BradleyWood/x86_vapi_256_512

x86: Enable 256/512-bit vector API with JIT option

2 parents 6458fc5 + 3cb44d0 commit 9108917

File tree

1 file changed

+

1

-

1

lines changed

1 file changed

+

1

-

1

lines changed

Lines changed: 1 addition & 1 deletion

Original file line numberDiff line numberDiff line change

@@ -381,7 +381,7 @@ class TR_VectorAPIExpansion : public TR::Optimization

381381

{

382382

length = TR::NoVectorLength;

383383

}

384-

else if (vectorLength != 128)

384+

else if (vectorLength == 64 || (vectorLength != 128 && !(comp->target().cpu.isX86() && comp->getOption(TR_EnableExtendedVectorLengths))))

385385

{

386386

length = TR::NoVectorLength;

387387

}

0 commit comments

Comments

 (0)