From 7c3b5ade5e9237a4e50084597b9cdde5ad5165d8 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Wed, 15 May 2019 15:20:45 +0000 Subject: [PATCH] [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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@360781 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandGuide/FileCheck.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/CommandGuide/FileCheck.rst b/docs/CommandGuide/FileCheck.rst index 55c7f31f63b8..bc216be35df6 100644 --- a/docs/CommandGuide/FileCheck.rst +++ b/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