summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/softfloat
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2012-04-22 14:10:44 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2012-04-22 14:10:44 +0000
commitded30e907e3d77af8b2c623438564849904aee30 (patch)
treeab03644feae00b71fa6273bad759f6e0d5893113 /src/lib/softfloat
parentb6791d3348ed2dc5e384f691f3d1eb358e7ae509 (diff)
Clean-ups and version bumpmame0145u7
Diffstat (limited to 'src/lib/softfloat')
-rw-r--r--src/lib/softfloat/fyl2x.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/softfloat/fyl2x.c b/src/lib/softfloat/fyl2x.c
index 084b6d10e52..fc41d125581 100644
--- a/src/lib/softfloat/fyl2x.c
+++ b/src/lib/softfloat/fyl2x.c
@@ -161,7 +161,7 @@ static const float128 float128_two =
static const float128 float128_ln2inv2 =
packFloat_128(U64(0x400071547652b82f), U64(0xe1777d0ffda0d23a));
-#define SQRT2_HALF_SIG U64(0xb504f333f9de6484)
+#define SQRT2_HALF_SIG U64(0xb504f333f9de6484)
extern float128 OddPoly(float128 x, float128 *arr, unsigned n);
@@ -277,7 +277,7 @@ static floatx80 fyl2x(floatx80 a, floatx80 b)
invalid:
float_raise(float_flag_invalid);
return floatx80_default_nan;
- }
+ }
else {
if (bExp == 0) {
if (bSig == 0) goto invalid;
@@ -391,7 +391,7 @@ floatx80 fyl2xp1(floatx80 a, floatx80 b)
invalid:
float_raise(float_flag_invalid);
return floatx80_default_nan;
- }
+ }
else {
if (bExp == 0) {
if (bSig == 0) goto invalid;