Skip to content

Commit 9ee7bd8

Browse files
authored
Merge pull request #22983 from gita-omr/boxing_by_default_2
Enable VectorAPI boxing by default
2 parents b22ebbb + 4bf7682 commit 9ee7bd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/compiler/optimizer/VectorAPIExpansion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ TR_VectorAPIExpansion::perform()
5353
{
5454
bool disableVectorAPIExpansion = comp()->getOption(TR_DisableVectorAPIExpansion);
5555
bool traceVectorAPIExpansion = comp()->getOption(TR_TraceVectorAPIExpansion);
56-
_boxingAllowed = comp()->getOption(TR_EnableVectorAPIBoxing);
56+
_boxingAllowed = !comp()->getOption(TR_DisableVectorAPIBoxing);
5757

5858
_trace = traceVectorAPIExpansion;
5959

0 commit comments

Comments
 (0)