8338694: x86_64 intrinsic for tanh using libm

Reviewed-by: kvn, jbhateja, sgibbons, sviswanathan
This commit is contained in:
vamsi-parasa 2024-09-24 15:11:13 +00:00
parent 2669e22b76
commit 212e32931c
26 changed files with 980 additions and 10 deletions

View file

@ -2737,6 +2737,7 @@ public final class Math {
* @return The hyperbolic tangent of {@code x}.
* @since 1.5
*/
@IntrinsicCandidate
public static double tanh(double x) {
return StrictMath.tanh(x);
}