[llvm-commits] [llvm] r43727 - /llvm/trunk/docs/tutorial/LangImpl8.html

Chris Lattner sabre at nondot.org
Mon Nov 5 11:28:07 PST 2007


Author: lattner
Date: Mon Nov  5 13:28:07 2007
New Revision: 43727

URL: http://llvm.org/viewvc/llvm-project?rev=43727&view=rev
Log:
recursive types are our friend.

Modified:
    llvm/trunk/docs/tutorial/LangImpl8.html

Modified: llvm/trunk/docs/tutorial/LangImpl8.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl8.html?rev=43727&r1=43726&r2=43727&view=diff

==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl8.html (original)
+++ llvm/trunk/docs/tutorial/LangImpl8.html Mon Nov  5 13:28:07 2007
@@ -89,7 +89,10 @@
 mostly an exercise in learning how the LLVM <a 
 href="../LangRef.html#i_getelementptr">getelementptr</a> instruction works.
 The getelementptr instruction is so nifty/unconventional, it <a 
-href="../GetElementPtr.html">has its own FAQ</a>!).</li>
+href="../GetElementPtr.html">has its own FAQ</a>!).  If you add support
+for recursive types (e.g. linked lists), make sure to read the <a 
+href="../ProgrammersManual.html#TypeResolve">section in the LLVM
+Programmer's Manual</a> that describes how to construct them.</li>
 
 <li><b>standard runtime</b> - Our current language allows the user to access
 arbitrary external functions, and we use it for things like "printd" and





More information about the llvm-commits mailing list