diff options
author | kristina <notstina@gmail.com> | 2019-11-16 20:58:08 +0000 |
---|---|---|
committer | kristina <notstina@gmail.com> | 2019-11-16 21:09:16 +0000 |
commit | 2916489c54a303971bc546f287b71532d49ddd33 (patch) | |
tree | 643e8429cb520b3c2976458f4aabdbb80d9b11eb /llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst | |
parent | 584704c725a266aed4ed11f389bab055192e3a24 (diff) | |
download | bcm5719-llvm-2916489c54a303971bc546f287b71532d49ddd33.tar.gz bcm5719-llvm-2916489c54a303971bc546f287b71532d49ddd33.zip |
[Docs] Fix relative links in tutorial.
Update relative links in Kaleidoscope tutorial.
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst')
-rw-r--r-- | llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst index 0e61c07659d..725423f2d38 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst @@ -217,7 +217,7 @@ Kaleidoscope looks like this: To visualize the control flow graph, you can use a nifty feature of the LLVM '`opt <http://llvm.org/cmds/opt.html>`_' tool. If you put this LLVM IR into "t.ll" and run "``llvm-as < t.ll | opt -analyze -view-cfg``", `a -window will pop up <../ProgrammersManual.html#viewing-graphs-while-debugging-code>`_ and you'll +window will pop up <../../ProgrammersManual.html#viewing-graphs-while-debugging-code>`_ and you'll see this graph: .. figure:: LangImpl05-cfg.png |