diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-08-16 00:29:32 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-08-16 00:29:32 -0400 |
commit | 0a4a4a7a11db93c39960feea96ec9dbed969a44e (patch) | |
tree | 0bf1f45041d64c4f9e70818b53a7a4dad25f52a1 | |
parent | badaa04accd6e606c5a5c448c579e4b18b6c1012 (diff) | |
download | musl-0a4a4a7a11db93c39960feea96ec9dbed969a44e.tar.gz musl-0a4a4a7a11db93c39960feea96ec9dbed969a44e.tar.xz musl-0a4a4a7a11db93c39960feea96ec9dbed969a44e.zip |
fix build of x86_64 expl assembly
apparently this label change was not carried over when adapting the changes from the i386 version.
-rw-r--r-- | src/math/x86_64/expl.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/x86_64/expl.s b/src/math/x86_64/expl.s index 107f3f52..3add810d 100644 --- a/src/math/x86_64/expl.s +++ b/src/math/x86_64/expl.s @@ -28,7 +28,7 @@ expl: # should be 0x1.71547652b82fe178p0L == 0x3fff b8aa3b29 5c17f0bc # it will be wrong on non-nearest rounding mode -3: fldl2e +2: fldl2e subq $48, %rsp # hi = log2e_hi*x # 2^hi = exp2l(hi) |