diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2019-10-30 02:08:39 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2019-10-30 02:08:39 +0000 |
commit | e4728199106060e4cad02a3523a16fba1dad3d63 (patch) | |
tree | aa5894b846759848e3ef91fab6959c5239a52e23 | |
parent | 856b4aa2b53f65aa1202aac802c1307bf12503da (diff) |
Fix declaration of S1 by swapping misplaced ',' and ';'.
This is inside !(defined(__amd64__) || defined(__i386__)),
while the file is only used on those two architectures.
"Free commit! No strings attached! No hidden tricks!" from miod
-rw-r--r-- | lib/libm/src/ld80/k_sincosl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/src/ld80/k_sincosl.h b/lib/libm/src/ld80/k_sincosl.h index 82421722f68..89c48419b33 100644 --- a/lib/libm/src/ld80/k_sincosl.h +++ b/lib/libm/src/ld80/k_sincosl.h @@ -23,8 +23,8 @@ S1lo = -9.2563760475949941e-18; /* -0x15580000000000.0p-109 */ #define C1 ((long double)C1hi + C1lo) #else static const long double -C1 = 0.0416666666666666666136L; /* 0xaaaaaaaaaaaaaa9b.0p-68 */ -S1 = -0.166666666666666666671L, /* -0xaaaaaaaaaaaaaaab.0p-66 */ +C1 = 0.0416666666666666666136L, /* 0xaaaaaaaaaaaaaa9b.0p-68 */ +S1 = -0.166666666666666666671L; /* -0xaaaaaaaaaaaaaaab.0p-66 */ #endif static const double |