From 582e79ce56711c2a1e45ee4381d736986bf39888 Mon Sep 17 00:00:00 2001 From: Sander de Smalen Date: Tue, 11 Jun 2019 15:28:13 +0000 Subject: [PATCH] Fix docs build issue introduced by r363035 Replacing '.. code-block:: llvm' by '::' is a quick fix to the build warning/error: Could not lex literal_block as "llvm". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@363079 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.rst b/docs/LangRef.rst index d2250443d0b..6f255d14c70 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -13766,7 +13766,7 @@ The second argument must be a vector of floating-point values. Examples: """"""""" -.. code-block:: llvm +:: %unord = call reassoc float @llvm.experimental.vector.reduce.v2.fadd.f32.v4f32(float 0.0, <4 x float> %input) ; unordered reduction %ord = call float @llvm.experimental.vector.reduce.v2.fadd.f32.v4f32(float %start_value, <4 x float> %input) ; ordered reduction @@ -13827,7 +13827,7 @@ The second argument must be a vector of floating-point values. Examples: """"""""" -.. code-block:: llvm +:: %unord = call reassoc float @llvm.experimental.vector.reduce.v2.fmul.f32.v4f32(float 1.0, <4 x float> %input) ; unordered reduction %ord = call float @llvm.experimental.vector.reduce.v2.fmul.f32.v4f32(float %start_value, <4 x float> %input) ; ordered reduction -- 2.40.0