aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-05 19:28:07 +0000
committerChris Lattner <sabre@nondot.org>2007-11-05 19:28:07 +0000
commit9ca08f3d8e810b3792c01335037fa8d4ea3c9691 (patch)
treedbdd98d26e2b68f0cb24b502ef5d154fc1aee36c /docs/tutorial
parentcac2135bc8a732c495b52aee85800baca2e23c22 (diff)
downloadexternal_llvm-9ca08f3d8e810b3792c01335037fa8d4ea3c9691.zip
external_llvm-9ca08f3d8e810b3792c01335037fa8d4ea3c9691.tar.gz
external_llvm-9ca08f3d8e810b3792c01335037fa8d4ea3c9691.tar.bz2
recursive types are our friend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/LangImpl8.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl8.html b/docs/tutorial/LangImpl8.html
index 9a1a8a2..4e7f087 100644
--- a/docs/tutorial/LangImpl8.html
+++ b/docs/tutorial/LangImpl8.html
@@ -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