diff --git a/java/com/google/turbine/binder/ConstEvaluator.java b/java/com/google/turbine/binder/ConstEvaluator.java index d088fe44..23991762 100644 --- a/java/com/google/turbine/binder/ConstEvaluator.java +++ b/java/com/google/turbine/binder/ConstEvaluator.java @@ -79,9 +79,10 @@ /** * Constant expression evaluation. * - *
JLS ยง15.4 requires this class to be strictfp. + *
This class requires strict floating point operations. In Java SE 17 and later, the Java SE + * Platform always requires strict evaluation of floating-point expressions. */ -public strictfp class ConstEvaluator { +public class ConstEvaluator { /** The symbol of the originating class, for visibility checks. */ private final @Nullable ClassSymbol origin;