From 2392666841e5e200cbd36eedabd8957eed6035f1 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". llvm-svn: 363079 --- 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