aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/tutorial
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2016-03-17 10:20:58 +0000
committerWilfred Hughes <me@wilfred.me.uk>2016-03-17 10:20:58 +0000
commit1bf1be9933a023666c56a990311b5e35422e0955 (patch)
treeaddd1c96eaf50a363a8a969145536c3ae9e99aab /llvm/docs/tutorial
parenta839dddf9232b652a26c55b4a6ce3f757ae8ab46 (diff)
downloadllvm-1bf1be9933a023666c56a990311b5e35422e0955.zip
llvm-1bf1be9933a023666c56a990311b5e35422e0955.tar.gz
llvm-1bf1be9933a023666c56a990311b5e35422e0955.tar.bz2
Remove obselete reference to TypeResolve from the tutorial.
TypeResolve went away in r134829 in 2011. llvm-svn: 263702
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r--llvm/docs/tutorial/LangImpl9.rst5
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/docs/tutorial/LangImpl9.rst b/llvm/docs/tutorial/LangImpl9.rst
index ec37573..5799c99 100644
--- a/llvm/docs/tutorial/LangImpl9.rst
+++ b/llvm/docs/tutorial/LangImpl9.rst
@@ -51,10 +51,7 @@ For example, try adding:
applications. Adding them is mostly an exercise in learning how the
LLVM `getelementptr <../LangRef.html#getelementptr-instruction>`_ instruction
works: it is so nifty/unconventional, it `has its own
- FAQ <../GetElementPtr.html>`_! If you add support for recursive types
- (e.g. linked lists), make sure to read the `section in the LLVM
- Programmer's Manual <../ProgrammersManual.html#TypeResolve>`_ that
- describes how to construct them.
+ FAQ <../GetElementPtr.html>`_!
- **standard runtime** - Our current language allows the user to access
arbitrary external functions, and we use it for things like "printd"
and "putchard". As you extend the language to add higher-level