fix build regression in i386 asm for atan2, atan2f
authorRich Felker <dalias@aerifal.cx>
Mon, 5 Aug 2019 23:57:07 +0000 (19:57 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 5 Aug 2019 23:57:07 +0000 (19:57 -0400)
commit f3ed8bfe8a82af1870ddc8696ed4cc1d5aa6b441 inadvertently removed
labels that were still needed.

src/math/i386/atan2.s
src/math/i386/atan2f.s

index 1fa0524db9f66016a2106309a0314ae3d91e0d24..76b95f3176d49904a918e36aad30517ea720cb68 100644 (file)
@@ -11,4 +11,4 @@ atan2:
        jae 1f
                # subnormal x, return x with underflow
        fsts 4(%esp)
-       ret
+1:     ret
index 0b264726ac5870e5c7ec677e48380eb40e797704..c9408a9088d076e8a12618b3eeb2d32612d315ff 100644 (file)
@@ -13,4 +13,4 @@ atan2f:
        fld %st(0)
        fmul %st(1)
        fstps 4(%esp)
-       ret
+1:     ret