[llvm-commits] [llvm] r43748 - /llvm/trunk/docs/tutorial/LangImpl8.html

Chris Lattner sabre at nondot.org
Mon Nov 5 17:40:47 PST 2007


Author: lattner
Date: Mon Nov  5 19:40:41 2007
New Revision: 43748

URL: http://llvm.org/viewvc/llvm-project?rev=43748&view=rev
Log:
typo from Ryan Brown.

Modified:
    llvm/trunk/docs/tutorial/LangImpl8.html

Modified: llvm/trunk/docs/tutorial/LangImpl8.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl8.html?rev=43748&r1=43747&r2=43748&view=diff

==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl8.html (original)
+++ llvm/trunk/docs/tutorial/LangImpl8.html Mon Nov  5 19:40:41 2007
@@ -280,7 +280,7 @@
 <p>Third, it <em>is certainly possible</em> to add language-specific
 optimizations, and you have a number of choices in how to do it.  As one trivial
 example, it is possible to add language-specific optimization passes that
-"known" things about code compiled for a language.  In the case of the C family,
+"know" things about code compiled for a language.  In the case of the C family,
 there is an optimziation pass that "knows" about the standard C library
 functions.  If you call "exit(0)" in main(), it knows that it is safe to
 optimize that into "return 0;" for example, because C specifies what the 'exit'





More information about the llvm-commits mailing list