diff options
author | Rich Felker <dalias@aerifal.cx> | 2019-08-05 19:57:07 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-08-05 19:57:07 -0400 |
commit | 6818c31c9bc4bbad5357f1de14bedf781e5b349e (patch) | |
tree | 7781627367d9a8128605352bc6898629f6b6cdef /src/math/i386/atan2f.s | |
parent | f3ed8bfe8a82af1870ddc8696ed4cc1d5aa6b441 (diff) | |
download | musl-6818c31c9bc4bbad5357f1de14bedf781e5b349e.tar.gz musl-6818c31c9bc4bbad5357f1de14bedf781e5b349e.tar.xz musl-6818c31c9bc4bbad5357f1de14bedf781e5b349e.zip |
fix build regression in i386 asm for atan2, atan2f
commit f3ed8bfe8a82af1870ddc8696ed4cc1d5aa6b441 inadvertently removed labels that were still needed.
Diffstat (limited to 'src/math/i386/atan2f.s')
-rw-r--r-- | src/math/i386/atan2f.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/i386/atan2f.s b/src/math/i386/atan2f.s index 0b264726..c9408a90 100644 --- a/src/math/i386/atan2f.s +++ b/src/math/i386/atan2f.s @@ -13,4 +13,4 @@ atan2f: fld %st(0) fmul %st(1) fstps 4(%esp) - ret +1: ret |