From 1dbcf8ba8a0cfa072d52bec22eb2449724e4982a Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 9 Nov 2019 22:15:26 +0000 Subject: [PATCH] Try to fix sphinx "Could not lex literal_block as "llvm"" warning. Code block isn't IR - so treat it as "none" instead. --- llvm/docs/GlobalISel/Pipeline.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/docs/GlobalISel/Pipeline.rst b/llvm/docs/GlobalISel/Pipeline.rst index b3a6baa..01bd4df 100644 --- a/llvm/docs/GlobalISel/Pipeline.rst +++ b/llvm/docs/GlobalISel/Pipeline.rst @@ -165,7 +165,7 @@ involved in a bug. Once the critical blocks have been identified, you can further increase the resolution to the critical instructions by splitting the blocks like from: -.. code-block:: llvm +.. code-block:: none bb1: ... instructions group 1 ... @@ -173,7 +173,7 @@ resolution to the critical instructions by splitting the blocks like from: into: -.. code-block:: llvm +.. code-block:: none bb1: ... instructions group 1 ... -- 2.7.4