diff test/compiler/intrinsics/mathexact/Verify.java @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents cd5d10655495
children 52b4284cb496
line wrap: on
line diff
--- a/test/compiler/intrinsics/mathexact/Verify.java	Tue Apr 01 14:09:03 2014 +0200
+++ b/test/compiler/intrinsics/mathexact/Verify.java	Tue Apr 01 13:57:07 2014 +0200
@@ -160,7 +160,6 @@
 
     public static class NonConstantTest {
         public static java.util.Random rnd = new java.util.Random();
-        public static int[] values = new int[] { Integer.MAX_VALUE, Integer.MIN_VALUE };
 
         public static void verify(BinaryMethod method) {
             for (int i = 0; i < 50000; ++i) {
@@ -170,10 +169,6 @@
                 Verify.verifyBinary(rnd1 + 1, rnd2, method);
                 Verify.verifyBinary(rnd1 - 1, rnd2, method);
                 Verify.verifyBinary(rnd1, rnd2 - 1, method);
-                Verify.verifyBinary(0, values[0], method);
-                Verify.verifyBinary(values[0], 0, method);
-                Verify.verifyBinary(0, values[1], method);
-                Verify.verifyBinary(values[1], 0, method);
             }
         }
     }