summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/builtins/adddf3.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/builtins/adddf3.c')
-rw-r--r--compiler-rt/lib/builtins/adddf3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/adddf3.c b/compiler-rt/lib/builtins/adddf3.c
index a55e82d2117..7f196679d29 100644
--- a/compiler-rt/lib/builtins/adddf3.c
+++ b/compiler-rt/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);
OpenPOWER on IntegriCloud