[llvm] r360781 - [FileCheck] Fix sphinx error: Make input be gas block

Thomas Preud'homme via llvm-commits llvm-commits at lists.llvm.org
Wed May 15 08:20:45 PDT 2019


Author: thopre
Date: Wed May 15 08:20:45 2019
New Revision: 360781

URL: http://llvm.org/viewvc/llvm-project?rev=360781&view=rev
Log:
[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

Modified:
    llvm/trunk/docs/CommandGuide/FileCheck.rst

Modified: llvm/trunk/docs/CommandGuide/FileCheck.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/FileCheck.rst?rev=360781&r1=360780&r2=360781&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/FileCheck.rst (original)
+++ llvm/trunk/docs/CommandGuide/FileCheck.rst Wed May 15 08:20:45 2019
@@ -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
 




More information about the llvm-commits mailing list