From: Hans Wennborg Date: Thu, 11 Apr 2019 07:30:56 +0000 (+0000) Subject: Try to fix the shpinx build X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c129f6e6cb443dc52781726076bc8398bb6a888;p=llvm Try to fix the shpinx build git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@358154 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/tutorial/LangImpl02.rst b/docs/tutorial/LangImpl02.rst index fb9ee722923..6982e969c8a 100644 --- a/docs/tutorial/LangImpl02.rst +++ b/docs/tutorial/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 `_ diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst index 6982e969c8a..fb9ee722923 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst +++ b/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 `_ diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst index da465ef7061..3253c9d034b 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst +++ b/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 `_ diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst index bdd21d6cd4a..8389e6c591b 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst +++ b/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 `_ diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst index dad24890e12..b9c99d897aa 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst +++ b/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 `_ diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst index 2a9f4c6b609..e5097883f46 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst +++ b/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/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst index 582645f449b..c3a862c289e 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst +++ b/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 `_ diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst index da4e60f84b8..b6e9cbf43b1 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst +++ b/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 `_ diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst index d81f9fa0001..2f10ac9e967 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst +++ b/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 `_