+1

On 7/15/2016 3:17 PM, Brian Burkhalter wrote:
Please review @ your convenience.

Issue:  https://bugs.openjdk.java.net/browse/JDK-8161413
Patch:  [1]

Thanks,

Brian

[1] diff

--- a/src/java.base/share/classes/java/lang/Math.java
+++ b/src/java.base/share/classes/java/lang/Math.java
@@ -1613,6 +1613,8 @@
       * @return (<i>a</i>&nbsp;&times;&nbsp;<i>b</i>&nbsp;+&nbsp;<i>c</i>)
       * computed, as if with unlimited range and precision, and rounded
       * once to the nearest {@code double} value
+     *
+     * @since 9
       */
      // @HotSpotIntrinsicCandidate
      public static double fma(double a, double b, double c) {

@@ -1728,6 +1730,8 @@
       * @return (<i>a</i>&nbsp;&times;&nbsp;<i>b</i>&nbsp;+&nbsp;<i>c</i>)
       * computed, as if with unlimited range and precision, and rounded
       * once to the nearest {@code float} value
+     *
+     * @since 9
       */
      // @HotSpotIntrinsicCandidate
      public static float fma(float a, float b, float c) {


--- a/src/java.base/share/classes/java/lang/StrictMath.java
+++ b/src/java.base/share/classes/java/lang/StrictMath.java
@@ -1276,6 +1276,8 @@
       * @return (<i>a</i>&nbsp;&times;&nbsp;<i>b</i>&nbsp;+&nbsp;<i>c</i>)
       * computed, as if with unlimited range and precision, and rounded
       * once to the nearest {@code double} value
+     *
+     * @since 9
       */
      public static double fma(double a, double b, double c) {
          return Math.fma(a, b, c);

@@ -1328,6 +1330,8 @@
       * @return (<i>a</i>&nbsp;&times;&nbsp;<i>b</i>&nbsp;+&nbsp;<i>c</i>)
       * computed, as if with unlimited range and precision, and rounded
       * once to the nearest {@code float} value
+     *
+     * @since 9
       */
      public static float fma(float a, float b, float c) {
          return Math.fma(a, b, c);


Reply via email to