]> granicus.if.org Git - llvm/commitdiff
Try to fix the shpinx build
authorHans Wennborg <hans@hanshq.net>
Thu, 11 Apr 2019 07:30:56 +0000 (07:30 +0000)
committerHans Wennborg <hans@hanshq.net>
Thu, 11 Apr 2019 07:30:56 +0000 (07:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@358154 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl02.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst
docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst

index fb9ee7229233b1b3303be5355b34a58c819d86ec..6982e969c8af60ca90523d041a16293802a78ecb 100644 (file)
@@ -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>`_
index 6982e969c8af60ca90523d041a16293802a78ecb..fb9ee7229233b1b3303be5355b34a58c819d86ec 100644 (file)
@@ -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>`_
index da465ef70613051f6a53c686ea67ec6f0c8483e4..3253c9d034b25878bc36076bd9cfa8c76a3ac215 100644 (file)
@@ -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>`_
index bdd21d6cd4ae192e33f717879cf1a6ac5ee6e90e..8389e6c591b5fe704160692f6ce0778fcf126953 100644 (file)
@@ -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>`_
index dad24890e123c56c4de083e5fa300ee728e8d6b1..b9c99d897aa2f42a3d4b7ff1d41c45f9e25c3059 100644 (file)
@@ -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>`_
index 2a9f4c6b609ca404069b1850f04a382a6b2396fc..e5097883f467170b041f380daf30be7f2c6f074b 100644 (file)
@@ -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
index 582645f449b4156cb6e20e81bcb012d0d03b7a06..c3a862c289e3cd9a4c984e8122907c16c7d33568 100644 (file)
@@ -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>`_
index da4e60f84b8dbd305f38c5c3d07771882100da78..b6e9cbf43b132e06e6de001d7fd436f83ae36f57 100644 (file)
@@ -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>`_
index d81f9fa0001cf6eaab6f8471e9e490befb9cea00..2f10ac9e96716475eeed0c084ac7c62b85806a84 100644 (file)
@@ -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>`_