jdk/src/java.base/share/classes/java/lang/Math.java
changeset 39656 25f808289769
parent 38460 f521277035db
child 40530 53bc022a137b
--- a/jdk/src/java.base/share/classes/java/lang/Math.java	Fri Jul 15 17:31:30 2016 +0100
+++ b/jdk/src/java.base/share/classes/java/lang/Math.java	Fri Jul 15 12:30:10 2016 -0700
@@ -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) {