[llvm] r263702 - Remove obselete reference to TypeResolve from the tutorial.
Wilfred Hughes via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 17 03:20:58 PDT 2016
Author: wilfred
Date: Thu Mar 17 05:20:58 2016
New Revision: 263702
URL: http://llvm.org/viewvc/llvm-project?rev=263702&view=rev
Log:
Remove obselete reference to TypeResolve from the tutorial.
TypeResolve went away in r134829 in 2011.
Modified:
llvm/trunk/docs/tutorial/LangImpl9.rst
Modified: llvm/trunk/docs/tutorial/LangImpl9.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl9.rst?rev=263702&r1=263701&r2=263702&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl9.rst (original)
+++ llvm/trunk/docs/tutorial/LangImpl9.rst Thu Mar 17 05:20:58 2016
@@ -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
More information about the llvm-commits
mailing list