< prev index next >

test/compiler/intrinsics/mathexact/sanity/IntrinsicBase.java

Print this page

        

@@ -127,11 +127,11 @@
             super(testCase);
         }
 
         @Override
         protected boolean isIntrinsicSupported() {
-            return isServerVM() && Boolean.valueOf(useMathExactIntrinsics) && (Platform.isX86() || Platform.isX64());
+            return isServerVM() && Boolean.valueOf(useMathExactIntrinsics) && (Platform.isX86() || Platform.isX64() ||  Platform.isAArch64());
         }
 
         @Override
         protected String getIntrinsicId() {
             return "_" + testCase.name().toLowerCase() + "ExactI";

@@ -143,11 +143,11 @@
             super(testCase);
         }
 
         @Override
         protected boolean isIntrinsicSupported() {
-            return isServerVM() && Boolean.valueOf(useMathExactIntrinsics) && Platform.isX64();
+            return isServerVM() && Boolean.valueOf(useMathExactIntrinsics) && (Platform.isX64() || Platform.isAArch64());
         }
 
         @Override
         protected String getIntrinsicId() {
             return "_" + testCase.name().toLowerCase() + "ExactL";
< prev index next >