diff options
Diffstat (limited to 'llvm/docs/tutorial/LangImpl1.rst')
-rw-r--r-- | llvm/docs/tutorial/LangImpl1.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl1.rst b/llvm/docs/tutorial/LangImpl1.rst index 3333ce8706f..f4b019166af 100644 --- a/llvm/docs/tutorial/LangImpl1.rst +++ b/llvm/docs/tutorial/LangImpl1.rst @@ -73,7 +73,14 @@ in the various pieces. The structure of the tutorial is: about this is how easy and trivial it is to construct SSA form in LLVM: no, LLVM does *not* require your front-end to construct SSA form! -- `Chapter #8 <LangImpl8.html>`_: Conclusion and other useful LLVM +- `Chapter #8 <LangImpl8.html>`_: Extending the Language: Debug + Information - Having built a decent little programming language with + control flow, functions and mutable variables, we consider what it + takes to add debug information to standalone executables. This debug + information will allow you to set breakpoints in Kaleidoscope + functions, print out argument variables, and call functions - all + from within the debugger! +- `Chapter #9 <LangImpl8.html>`_: Conclusion and other useful LLVM tidbits - This chapter wraps up the series by talking about potential ways to extend the language, but also includes a bunch of pointers to info about "special topics" like adding garbage |