diff options
author | Hans Wennborg <hans@hanshq.net> | 2019-04-11 07:46:25 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2019-04-11 07:46:25 +0000 |
commit | 74e4f8a5edd97a75f91146adfa0b6d96be0ba06b (patch) | |
tree | 466ce280cf7bde12486eef270b1477d1705538b4 /llvm/docs/tutorial/MyFirstLanguageFrontend | |
parent | 136a6a612a564516ac50505e961f4fc26b36b373 (diff) | |
download | llvm-74e4f8a5edd97a75f91146adfa0b6d96be0ba06b.zip llvm-74e4f8a5edd97a75f91146adfa0b6d96be0ba06b.tar.gz llvm-74e4f8a5edd97a75f91146adfa0b6d96be0ba06b.tar.bz2 |
try to fix the sphinx build some more
llvm-svn: 358156
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
11 files changed, 22 insertions, 0 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl01.rst index 71ba932..8cf01c8 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 fb9ee72..3a26800 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 3253c9d..7b4e24d 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 8389e6c..773ce55 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 b9c99d8..685e5fb 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 e509788..911a7dc 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 c3a862c..8013dec 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 b6e9cbf..44a71d8 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 2f10ac9..1dcc0a8 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 b1d19c2..789042b 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 dcf9d58..2b589d1 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 ============================================= |