diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-07-03 14:37:30 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-07-03 14:37:30 +0000 |
commit | a6f54b3a404b1cba1be992fe63df6ea2941ea7fd (patch) | |
tree | e3cffa761b2120942e4b50d691648a6a31f0cbfc /compiler-rt | |
parent | f011f2876737d0695d9850ca30040c12a886c2d0 (diff) | |
download | bcm5719-llvm-a6f54b3a404b1cba1be992fe63df6ea2941ea7fd.tar.gz bcm5719-llvm-a6f54b3a404b1cba1be992fe63df6ea2941ea7fd.zip |
typos
llvm-svn: 74771
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/README.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler-rt/README.txt b/compiler-rt/README.txt index bf93f600099..e16dd4dd675 100644 --- a/compiler-rt/README.txt +++ b/compiler-rt/README.txt @@ -9,7 +9,7 @@ terms of the license agreement found in LICENSE.txt. ================================ -This is a replacment library for libgcc. Each function is contained +This is a replacement library for libgcc. Each function is contained in its own file. Each function has a corresponding unit test under test/Unit. @@ -34,10 +34,10 @@ di_int __ashldi3(di_int a, si_int b); // a << b di_int __ashrdi3(di_int a, si_int b); // a >> b arithmetic (sign fill) di_int __lshrdi3(di_int a, si_int b); // a >> b logical (zero fill) -si_int __clzsi2(si_int a); // count leading zeroes -si_int __clzdi2(di_int a); // count leading zeroes -si_int __ctzsi2(si_int a); // count trailing zeroes -si_int __ctzdi2(di_int a); // count trailing zeroes +si_int __clzsi2(si_int a); // count leading zeros +si_int __clzdi2(di_int a); // count leading zeros +si_int __ctzsi2(si_int a); // count trailing zeros +si_int __ctzdi2(di_int a); // count trailing zeros si_int __ffsdi2(di_int a); // find least significant 1 bit |