summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial/MyFirstLanguageFrontend
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2019-04-11 07:46:25 +0000
committerHans Wennborg <hans@hanshq.net>2019-04-11 07:46:25 +0000
commit74e4f8a5edd97a75f91146adfa0b6d96be0ba06b (patch)
tree466ce280cf7bde12486eef270b1477d1705538b4 /llvm/docs/tutorial/MyFirstLanguageFrontend
parent136a6a612a564516ac50505e961f4fc26b36b373 (diff)
downloadbcm5719-llvm-74e4f8a5edd97a75f91146adfa0b6d96be0ba06b.tar.gz
bcm5719-llvm-74e4f8a5edd97a75f91146adfa0b6d96be0ba06b.zip
try to fix the sphinx build some more
llvm-svn: 358156
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.rst2
-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
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst2
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/index.rst2
11 files changed, 22 insertions, 0 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.rst
index 71ba9322817..8cf01c8e4b9 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.rst
@@ -1,3 +1,5 @@
+:orphan:
+
=====================================================
Kaleidoscope: Kaleidoscope Introduction and the Lexer
=====================================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst
index fb9ee722923..3a2680099df 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst
@@ -1,3 +1,5 @@
+:orphan:
+
===========================================
Kaleidoscope: Implementing a Parser and AST
===========================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
index 3253c9d034b..7b4e24d35e4 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
@@ -1,3 +1,5 @@
+:orphan:
+
========================================
Kaleidoscope: Code generation to LLVM IR
========================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
index 8389e6c591b..773ce55eca0 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
@@ -1,3 +1,5 @@
+:orphan:
+
==============================================
Kaleidoscope: Adding JIT and Optimizer Support
==============================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
index b9c99d897aa..685e5fb69e4 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
@@ -1,3 +1,5 @@
+:orphan:
+
==================================================
Kaleidoscope: Extending the Language: Control Flow
==================================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
index e5097883f46..911a7dc92bc 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
@@ -1,3 +1,5 @@
+:orphan:
+
============================================================
Kaleidoscope: Extending the Language: User-defined Operators
============================================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
index c3a862c289e..8013dec326a 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
@@ -1,3 +1,5 @@
+:orphan:
+
=======================================================
Kaleidoscope: Extending the Language: Mutable Variables
=======================================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst
index b6e9cbf43b1..44a71d807f3 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst
@@ -1,3 +1,5 @@
+:orphan:
+
========================================
Kaleidoscope: Compiling to Object Code
========================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
index 2f10ac9e967..1dcc0a8aa90 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
@@ -1,3 +1,5 @@
+:orphan:
+
======================================
Kaleidoscope: Adding Debug Information
======================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst
index b1d19c2cdd8..789042b53d3 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst
@@ -1,3 +1,5 @@
+:orphan:
+
======================================================
Kaleidoscope: Conclusion and other useful LLVM tidbits
======================================================
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/index.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/index.rst
index dcf9d5814fb..2b589d19180 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/index.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/index.rst
@@ -1,3 +1,5 @@
+:orphan:
+
=============================================
My First Language Frontend with LLVM Tutorial
=============================================
OpenPOWER on IntegriCloud