Skip to content

Commit 4bf7682

Browse files
committed
Enable VectorAPI boxing by default
- -Xjit:disableVectorAPIBoxing option can be used to disable
1 parent 217fa03 commit 4bf7682

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)