[llvm] r363079 - Fix docs build issue introduced by r363035

Sander de Smalen via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 11 08:28:13 PDT 2019


Author: s.desmalen
Date: Tue Jun 11 08:28:13 2019
New Revision: 363079

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

Modified:
    llvm/trunk/docs/LangRef.rst

Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=363079&r1=363078&r2=363079&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Tue Jun 11 08:28:13 2019
@@ -13766,7 +13766,7 @@ The second argument must be a vector of
 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
 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




More information about the llvm-commits mailing list