[llvm-commits] [compiler-rt] r74771 - /compiler-rt/trunk/README.txt

Gabor Greif ggreif at gmail.com
Fri Jul 3 07:37:31 PDT 2009


Author: ggreif
Date: Fri Jul  3 09:37:30 2009
New Revision: 74771

URL: http://llvm.org/viewvc/llvm-project?rev=74771&view=rev
Log:
typos

Modified:
    compiler-rt/trunk/README.txt

Modified: compiler-rt/trunk/README.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/README.txt?rev=74771&r1=74770&r2=74771&view=diff

==============================================================================
--- compiler-rt/trunk/README.txt (original)
+++ compiler-rt/trunk/README.txt Fri Jul  3 09:37:30 2009
@@ -9,7 +9,7 @@
 
 ================================
 
-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 __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
 





More information about the llvm-commits mailing list