From abb2a91b89722da671d17606fb65d462f9882cc0 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Thu, 28 Oct 2021 10:44:48 -0400 Subject: [PATCH] [docs][NFC] Strip trailing whitespace from GettingStarted.rst --- llvm/docs/GettingStarted.rst | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/llvm/docs/GettingStarted.rst b/llvm/docs/GettingStarted.rst index 0a4bff0..521c001 100644 --- a/llvm/docs/GettingStarted.rst +++ b/llvm/docs/GettingStarted.rst @@ -38,9 +38,9 @@ This is an example workflow and configuration to get and build the LLVM source: * ``git clone https://github.com/llvm/llvm-project.git`` * Or, on windows, ``git clone --config core.autocrlf=false https://github.com/llvm/llvm-project.git`` - * To save storage and speed-up the checkout time, you may want to do a - `shallow clone `_. - For example, to get the latest revision of the LLVM project, use + * To save storage and speed-up the checkout time, you may want to do a + `shallow clone `_. + For example, to get the latest revision of the LLVM project, use ``git clone --depth 1 https://github.com/llvm/llvm-project.git`` #. Configure and build LLVM and Clang: @@ -832,7 +832,7 @@ layout: Generates system build files. ``llvm/cmake/modules`` - Build configuration for llvm user defined options. Checks compiler version and + Build configuration for llvm user defined options. Checks compiler version and linker flags. ``llvm/cmake/platforms`` @@ -842,20 +842,20 @@ Generates system build files. ``llvm/examples`` ----------------- -- Some simple examples showing how to use LLVM as a compiler for a custom +- Some simple examples showing how to use LLVM as a compiler for a custom language - including lowering, optimization, and code generation. -- Kaleidoscope Tutorial: Kaleidoscope language tutorial run through the - implementation of a nice little compiler for a non-trivial language - including a hand-written lexer, parser, AST, as well as code generation - support using LLVM- both static (ahead of time) and various approaches to - Just In Time (JIT) compilation. - `Kaleidoscope Tutorial for complete beginner +- Kaleidoscope Tutorial: Kaleidoscope language tutorial run through the + implementation of a nice little compiler for a non-trivial language + including a hand-written lexer, parser, AST, as well as code generation + support using LLVM- both static (ahead of time) and various approaches to + Just In Time (JIT) compilation. + `Kaleidoscope Tutorial for complete beginner `_. -- BuildingAJIT: Examples of the `BuildingAJIT tutorial - `_ that shows how LLVM’s - ORC JIT APIs interact with other parts of LLVM. It also, teaches how to +- BuildingAJIT: Examples of the `BuildingAJIT tutorial + `_ that shows how LLVM’s + ORC JIT APIs interact with other parts of LLVM. It also, teaches how to recombine them to build a custom JIT that is suited to your use-case. ``llvm/include`` @@ -923,8 +923,8 @@ share code among the `tools`_. ``llvm/lib/MC/`` - The libraries represent and process code at machine code level. Handles - assembly and object-file emission. + The libraries represent and process code at machine code level. Handles + assembly and object-file emission. ``llvm/lib/ExecutionEngine/`` -- 2.7.4