summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial/MyFirstLanguageFrontend
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2019-04-11 07:30:56 +0000
committerHans Wennborg <hans@hanshq.net>2019-04-11 07:30:56 +0000
commit147e0ddaa91a4bf7d04871e29b8a6f05b974207f (patch)
tree02e99dabcc453f351018c793d76971807999f0d1 /llvm/docs/tutorial/MyFirstLanguageFrontend
parentfbb823891d73cb19d5d138920295f5bfe0e82e83 (diff)
downloadbcm5719-llvm-147e0ddaa91a4bf7d04871e29b8a6f05b974207f.tar.gz
bcm5719-llvm-147e0ddaa91a4bf7d04871e29b8a6f05b974207f.zip
Try to fix the shpinx build
llvm-svn: 358154
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst2
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>`_
OpenPOWER on IntegriCloud