clarify what proto is.
authorChris Lattner <sabre@nondot.org>
Tue, 6 Nov 2007 05:07:30 +0000 (05:07 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 6 Nov 2007 05:07:30 +0000 (05:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43753 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl3.html

index 5e6d2c82f75c3541794c684260d031db456c8d74..0d024467d1dfb7370f622e5b81647abe1b45d889 100644 (file)
@@ -418,9 +418,10 @@ Function *FunctionAST::Codegen() {
 </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>