From: Jyotsna Verma Date: Thu, 15 Nov 2012 21:21:01 +0000 (+0000) Subject: Fix typo. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=095d4fe02b7a61e496a309418d196071161c59f9;p=platform%2Fupstream%2Fllvm.git Fix typo. llvm-svn: 168091 --- diff --git a/llvm/docs/HowToUseInstrMappings.rst b/llvm/docs/HowToUseInstrMappings.rst index b51e74e..bf9278e 100644 --- a/llvm/docs/HowToUseInstrMappings.rst +++ b/llvm/docs/HowToUseInstrMappings.rst @@ -120,7 +120,7 @@ to include relevant information in its definition. For example, consider following to be the current definitions of ADD, ADD_pt (true) and ADD_pf (false) instructions: -.. code-block::llvm +.. code-block:: llvm def ADD : ALU32_rr<(outs IntRegs:$dst), (ins IntRegs:$a, IntRegs:$b), "$dst = add($a, $b)", @@ -141,7 +141,7 @@ In this step, we modify these instructions to include the information required by the relationship model, getPredOpcode, so that they can be related. -.. code-block::llvm +.. code-block:: llvm def ADD : PredRel, ALU32_rr<(outs IntRegs:$dst), (ins IntRegs:$a, IntRegs:$b), "$dst = add($a, $b)",