diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-06 01:40:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-06 01:40:41 +0000 |
commit | 4f4048a174a1ce6a2f640dfc69f325f9843f70cd (patch) | |
tree | c30f66d66b36989d5494e4dcbe063871e3713c56 /llvm/docs/tutorial | |
parent | e6819aeee0ccd91d71397c7872aa86b228b6db84 (diff) | |
download | bcm5719-llvm-4f4048a174a1ce6a2f640dfc69f325f9843f70cd.tar.gz bcm5719-llvm-4f4048a174a1ce6a2f640dfc69f325f9843f70cd.zip |
typo from Ryan Brown.
llvm-svn: 43748
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl8.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl8.html b/llvm/docs/tutorial/LangImpl8.html index 66155a0bcb2..a92fac832be 100644 --- a/llvm/docs/tutorial/LangImpl8.html +++ b/llvm/docs/tutorial/LangImpl8.html @@ -280,7 +280,7 @@ do some specific feature, so they go ahead and extend it to do so.</p> <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' |