diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-05 19:28:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-05 19:28:07 +0000 |
commit | 4484d8d7f0822ca0154fe56c480ff0511023b161 (patch) | |
tree | 8ec98b06b00008faf25f1dd4181538298e0e814a /llvm/docs/tutorial | |
parent | 2a8fd134eab3797a0dc9d465294528722d7cba5b (diff) | |
download | bcm5719-llvm-4484d8d7f0822ca0154fe56c480ff0511023b161.tar.gz bcm5719-llvm-4484d8d7f0822ca0154fe56c480ff0511023b161.zip |
recursive types are our friend.
llvm-svn: 43727
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl8.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl8.html b/llvm/docs/tutorial/LangImpl8.html index 9a1a8a28ced..4e7f08735c7 100644 --- a/llvm/docs/tutorial/LangImpl8.html +++ b/llvm/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 |