diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-06 05:07:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-06 05:07:30 +0000 |
commit | a1cd224a230dc51a4afd1590a4f2711cd713bff7 (patch) | |
tree | 48ca97530d86e7fdf9317eb07cbd36e46dbf5382 /docs/tutorial/LangImpl3.html | |
parent | 95ce0d61ab7051847cc8d562d9e5301c8948d658 (diff) | |
download | external_llvm-a1cd224a230dc51a4afd1590a4f2711cd713bff7.zip external_llvm-a1cd224a230dc51a4afd1590a4f2711cd713bff7.tar.gz external_llvm-a1cd224a230dc51a4afd1590a4f2711cd713bff7.tar.bz2 |
clarify what proto is.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43753 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl3.html')
-rw-r--r-- | docs/tutorial/LangImpl3.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html index 5e6d2c8..0d02446 100644 --- a/docs/tutorial/LangImpl3.html +++ b/docs/tutorial/LangImpl3.html @@ -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> |