This commit is contained in:
Robert Muir 2023-10-14 19:54:47 -04:00
parent 94619e00e0
commit 90c01c1e80
No known key found for this signature in database
GPG Key ID: 817AE1DD322D7ECA
1 changed files with 3 additions and 1 deletions

View File

@ -83,7 +83,9 @@ final class PanamaVectorUtilSupport implements VectorUtilSupport {
boolean hasFastIntegerVectors = isAMD64withoutAVX2 == false;
try {
hasFastIntegerVectors =
Boolean.parseBoolean(System.getProperty("tests.forceintegervectors", Boolean.toString(hasFastIntegerVectors)));
Boolean.parseBoolean(
System.getProperty(
"tests.forceintegervectors", Boolean.toString(hasFastIntegerVectors)));
} catch (SecurityException ignored) {
}
HAS_FAST_INTEGER_VECTORS = hasFastIntegerVectors;