diff options
author | Charlie Turner <charlesturner7c5@gmail.com> | 2015-01-24 21:51:21 +0000 |
---|---|---|
committer | Charlie Turner <charlesturner7c5@gmail.com> | 2015-01-24 21:51:21 +0000 |
commit | d415cc81985cad76d1388d22abb3cd335f206deb (patch) | |
tree | e363ac1686dd3c605971239fe61f1a3b69c0049e /llvm/docs/tutorial/LangImpl1.rst | |
parent | 6cba064414cb325435c1c7c0fdc998def7c06535 (diff) | |
download | bcm5719-llvm-d415cc81985cad76d1388d22abb3cd335f206deb.tar.gz bcm5719-llvm-d415cc81985cad76d1388d22abb3cd335f206deb.zip |
Fixup debug information references.
llvm-svn: 227020
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 |