[llvm-commits] [llvm] r43753 - /llvm/trunk/docs/tutorial/LangImpl3.html
Chris Lattner
sabre at nondot.org
Mon Nov 5 21:07:31 PST 2007
Author: lattner
Date: Mon Nov 5 23:07:30 2007
New Revision: 43753
URL: http://llvm.org/viewvc/llvm-project?rev=43753&view=rev
Log:
clarify what proto is.
Modified:
llvm/trunk/docs/tutorial/LangImpl3.html
Modified: llvm/trunk/docs/tutorial/LangImpl3.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl3.html?rev=43753&r1=43752&r2=43753&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl3.html (original)
+++ llvm/trunk/docs/tutorial/LangImpl3.html Mon Nov 5 23:07:30 2007
@@ -418,9 +418,10 @@
</div>
<p>Code generation for function definitions starts out simply enough: first we
-codegen the prototype and verify that it is ok. We also clear out the
+codegen the prototype (Proto) and verify that it is ok. We also clear out the
<tt>NamedValues</tt> map to make sure that there isn't anything in it from the
-last function we compiled.</p>
+last function we compiled. Code generation of the prototype ensures that there
+is an LLVM Function object that is ready to go for us.</p>
<div class="doc_code">
<pre>
More information about the llvm-commits
mailing list