diff options
author | Thomas Preud'homme <thomasp@graphcore.ai> | 2019-05-15 15:20:45 +0000 |
---|---|---|
committer | Thomas Preud'homme <thomasp@graphcore.ai> | 2019-05-15 15:20:45 +0000 |
commit | 5c15dbafb9da4c0b47a4e34e1cd2543b07cab8c4 (patch) | |
tree | 32723b5847ec986c1e4fcd238ffad7764c88a0e3 /llvm/docs/CommandGuide/FileCheck.rst | |
parent | 7dfd087a9a59443b6dde9cb4e8763c55fbd23edb (diff) | |
download | llvm-5c15dbafb9da4c0b47a4e34e1cd2543b07cab8c4.zip llvm-5c15dbafb9da4c0b47a4e34e1cd2543b07cab8c4.tar.gz llvm-5c15dbafb9da4c0b47a4e34e1cd2543b07cab8c4.tar.bz2 |
[FileCheck] Fix sphinx error: Make input be gas block
Summary:
Change example of input text from being llvm block to being gas block
since that text is made-up assembly.
Reviewers: jhenderson, jdenny, probinson, arichardson
Subscribers: llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61893
llvm-svn: 360781
Diffstat (limited to 'llvm/docs/CommandGuide/FileCheck.rst')
-rw-r--r-- | llvm/docs/CommandGuide/FileCheck.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst index 55c7f31..bc216be 100644 --- a/llvm/docs/CommandGuide/FileCheck.rst +++ b/llvm/docs/CommandGuide/FileCheck.rst @@ -593,13 +593,13 @@ For example: The above example would match the line: -.. code-block:: llvm +.. code-block:: gas add r5, r5, r6 but would not match the line: -.. code-block:: llvm +.. code-block:: gas add r5, r5, r7 |