[Wasm] fdlibm NFC: Remove dead code in __ieee754_pow

Fixes warnings.
i0 and i1 are not used in the original C code.
This commit is contained in:
Svyatoslav Kuzmich
2023-01-20 14:39:31 +01:00
parent 3acf371f8a
commit d6a713ad39
@@ -110,8 +110,6 @@ internal fun __ieee754_pow(x: Double, y: Double): Double {
var u: Double
var v: Double
var w: Double
var i0: Int
var i1: Int = 0
var i: Int
var j: Int
var k: Int
@@ -124,9 +122,6 @@ internal fun __ieee754_pow(x: Double, y: Double): Double {
var lx: UInt
var ly: UInt
//i0 = ((*(int*)&one)>>29)^1
i0 = 1
i1 = 1 - i0
hx = __HI(x); lx = __LO(x).toUInt()
hy = __HI(y); ly = __LO(y).toUInt()
ix = hx and 0x7fffffff; iy = hy and 0x7fffffff