[llvm-commits] [llvm] r43221 - in /llvm/trunk/docs/tutorial: LangImpl3.html index.html

2007-10-22 Thread Chris Lattner
Author: lattner Date: Mon Oct 22 02:01:42 2007 New Revision: 43221 URL: http://llvm.org/viewvc/llvm-project?rev=43221view=rev Log: start of chapter 3 Added: llvm/trunk/docs/tutorial/LangImpl3.html Modified: llvm/trunk/docs/tutorial/index.html Added:

Re: [llvm-commits] [llvm] r43221 - in /llvm/trunk/docs/tutorial: LangImpl3.html index.html

2007-10-22 Thread Dan Gohman
Value is the class used to represent a register in LLVM. The Codegen() method says to emit IR for that AST It would be good to mention that the registers here cannot be reassigned, as the word register might seem to imply. I don't know much you want to say about SSA at this point in the

Re: [llvm-commits] [llvm] r43221 - in /llvm/trunk/docs/tutorial: LangImpl3.html index.html

2007-10-22 Thread Owen Anderson
Dan, I'm planning to cover both of those points in the Basic Topics sections of the tutorial. --Owen smime.p7s Description: S/MIME cryptographic signature ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu

Re: [llvm-commits] [llvm] r43221 - in /llvm/trunk/docs/tutorial: LangImpl3.html index.html

2007-10-22 Thread Owen Anderson
Dan, I'm planning to cover both of those points in the Basic Topics sections of the tutorial. --Owen smime.p7s Description: S/MIME cryptographic signature ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu

Re: [llvm-commits] [llvm] r43221 - in /llvm/trunk/docs/tutorial: LangImpl3.html index.html

2007-10-22 Thread Chris Lattner
On Oct 22, 2007, at 3:05 PM, Dan Gohman wrote: Value is the class used to represent a register in LLVM. The Codegen() method says to emit IR for that AST It would be good to mention that the registers here cannot be reassigned, as the word register might seem to imply. Good idea. I