diff options
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
8 files changed, 8 insertions, 8 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst index 6982e969c8a..fb9ee722923 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst @@ -730,7 +730,7 @@ our makefile/command line about which options to use: Here is the code: -.. literalinclude:: ../../examples/Kaleidoscope/Chapter2/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter2/toy.cpp :language: c++ `Next: Implementing Code Generation to LLVM IR <LangImpl03.html>`_ diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst index da465ef7061..3253c9d034b 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst @@ -561,7 +561,7 @@ our makefile/command line about which options to use: Here is the code: -.. literalinclude:: ../../examples/Kaleidoscope/Chapter3/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter3/toy.cpp :language: c++ `Next: Adding JIT and Optimizer Support <LangImpl04.html>`_ diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst index bdd21d6cd4a..8389e6c591b 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst @@ -652,7 +652,7 @@ properly at runtime. Here is the code: -.. literalinclude:: ../../examples/Kaleidoscope/Chapter4/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter4/toy.cpp :language: c++ `Next: Extending the language: control flow <LangImpl05.html>`_ diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst index dad24890e12..b9c99d897aa 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst @@ -807,7 +807,7 @@ the if/then/else and for expressions. To build this example, use: Here is the code: -.. literalinclude:: ../../examples/Kaleidoscope/Chapter5/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter5/toy.cpp :language: c++ `Next: Extending the language: user-defined operators <LangImpl06.html>`_ diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst index 2a9f4c6b609..e5097883f46 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst @@ -760,7 +760,7 @@ will cause problems on Windows. Here is the code: -.. literalinclude:: ../../examples/Kaleidoscope/Chapter6/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter6/toy.cpp :language: c++ `Next: Extending the language: mutable variables / SSA diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst index 582645f449b..c3a862c289e 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst @@ -876,7 +876,7 @@ mutable variables and var/in support. To build this example, use: Here is the code: -.. literalinclude:: ../../examples/Kaleidoscope/Chapter7/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter7/toy.cpp :language: c++ `Next: Compiling to Object Code <LangImpl08.html>`_ diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst index da4e60f84b8..b6e9cbf43b1 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst @@ -212,7 +212,7 @@ expected: Full Code Listing ================= -.. literalinclude:: ../../examples/Kaleidoscope/Chapter8/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter8/toy.cpp :language: c++ `Next: Adding Debug Information <LangImpl09.html>`_ diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst index d81f9fa0001..2f10ac9e967 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst @@ -458,7 +458,7 @@ debug information. To build this example, use: Here is the code: -.. literalinclude:: ../../examples/Kaleidoscope/Chapter9/toy.cpp +.. literalinclude:: ../../../examples/Kaleidoscope/Chapter9/toy.cpp :language: c++ `Next: Conclusion and other useful LLVM tidbits <LangImpl10.html>`_ |