diff options
Diffstat (limited to 'compiler-rt/lib/builtins/ppc')
-rw-r--r-- | compiler-rt/lib/builtins/ppc/fixtfdi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/ppc/fixtfdi.c b/compiler-rt/lib/builtins/ppc/fixtfdi.c index 56e7b3fbf3e..2c7c0f8e279 100644 --- a/compiler-rt/lib/builtins/ppc/fixtfdi.c +++ b/compiler-rt/lib/builtins/ppc/fixtfdi.c @@ -25,7 +25,7 @@ uint64_t __fixtfdi(long double input) int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */ result |= INT64_C(0x0010000000000000); /* matissa(hi) with implicit bit */ - result <<= 10; /* mantissa(hi) with one zero preceeding bit. */ + result <<= 10; /* mantissa(hi) with one zero preceding bit. */ const int64_t hiNegationMask = ((int64_t)(hibits.x)) >> 63; |