diff --git a/libraries/stdlib/wasm/src/kotlin/math/fdlibm/s_expm1.kt b/libraries/stdlib/wasm/src/kotlin/math/fdlibm/s_expm1.kt index 31f46f69e5e..18732571091 100644 --- a/libraries/stdlib/wasm/src/kotlin/math/fdlibm/s_expm1.kt +++ b/libraries/stdlib/wasm/src/kotlin/math/fdlibm/s_expm1.kt @@ -139,7 +139,6 @@ internal fun expm1(_x: Double): Double { hx = __HIu(x) /* high word of x */ xsb = (hx and Int.MIN_VALUE.toUInt()).toInt() /* sign bit of x */ - if (xsb == 0) y = x; else y = -x /* y = |x| */ hx = (hx and 0x7fffffffU) /* high word of |x| */ /* filter out huge and non-finite argument */