Clean merge -> gc7-branch
[cacao.git] / tests / regression / LoadDisplacementOverflow.java
index c34f4c6ca7ad4e5b7706929cfd7d0478335df73c..97692e11a962fb12218277b3ede946248d5cba25 100644 (file)
@@ -2033,9 +2033,9 @@ public class LoadDisplacementOverflow {
         if (f++ % 100 == 0) System.out.println(f);
 
         // check FCONST instruction
-        System.out.println(1.2345678F);
+        System.out.println(1.23456789F);
 
         // check DCONST instruction
-        System.out.println(1.2345678D);
+        System.out.println(1.23456789D);
     }
 }