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 1fa0524..76b95f3 100644 (file)
@@ -11,4 +11,4 @@ atan2:
        jae 1f
                # subnormal x, return x with underflow
        fsts 4(%esp)
-       ret
+1:     ret
index 0b26472..c9408a9 100644 (file)
@@ -13,4 +13,4 @@ atan2f:
        fld %st(0)
        fmul %st(1)
        fstps 4(%esp)
-       ret
+1:     ret