recursive types are our friend.
authorChris Lattner <sabre@nondot.org>
Mon, 5 Nov 2007 19:28:07 +0000 (19:28 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 5 Nov 2007 19:28:07 +0000 (19:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43727 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl8.html

index 9a1a8a28ced0f96cdc530918d12f5be89de111d4..4e7f08735c7209e4c87cb9e15759b7061d5414a8 100644 (file)
@@ -89,7 +89,10 @@ very easy and are quite useful for many different applications.  Adding them is
 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