summaryrefslogtreecommitdiff
path: root/lib/builtins/adddf3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/builtins/adddf3.c')
-rw-r--r--lib/builtins/adddf3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/builtins/adddf3.c b/lib/builtins/adddf3.c
index a55e82d21..7f196679d 100644
--- a/lib/builtins/adddf3.c
+++ b/lib/builtins/adddf3.c
@@ -101,7 +101,7 @@ __adddf3(fp_t a, fp_t b) {
// If a == -b, return +zero.
if (aSignificand == 0) return fromRep(0);
- // If partial cancellation occured, we need to left-shift the result
+ // If partial cancellation occurred, we need to left-shift the result
// and adjust the exponent:
if (aSignificand < implicitBit << 3) {
const int shift = rep_clz(aSignificand) - rep_clz(implicitBit << 3);