diff options
author | Alp Toker <alp@nuanti.com> | 2014-05-15 02:22:34 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-05-15 02:22:34 +0000 |
commit | 1ee7fc7a1a5125d12b15673fcee500df4bf6241b (patch) | |
tree | 810b11a0f6969a552c0a6be53e0a03129a2ed6a6 /compiler-rt/lib/builtins/ppc | |
parent | e077269764568465a70f72a7ef21249e25f3afe0 (diff) | |
download | bcm5719-llvm-1ee7fc7a1a5125d12b15673fcee500df4bf6241b.tar.gz bcm5719-llvm-1ee7fc7a1a5125d12b15673fcee500df4bf6241b.zip |
Fix typos
llvm-svn: 208841
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; |