From: Ian Jackson Date: Sun, 4 Oct 2020 00:18:44 +0000 (+0100) Subject: wip bigfloat X-Git-Tag: otter-0.2.0~775 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=49beb84ef9c8fa3edb866325b5085e4e5116e299;p=otter.git wip bigfloat Signed-off-by: Ian Jackson --- diff --git a/templates/bigfloat.ts b/templates/bigfloat.ts index d7a07220..4c8b5dea 100644 --- a/templates/bigfloat.ts +++ b/templates/bigfloat.ts @@ -64,7 +64,7 @@ class Bigfloat { // to produce values > this, < endv let e_out = Math.max(this.exponent, endv.exponent); for (let e = e_out; - e; + ; e--) { let it = e - this.exponent; let ie = e - endv.exponent;