Fix typo.

llvm-svn: 168091
This commit is contained in:
Jyotsna Verma 2012-11-15 21:21:01 +00:00
parent 654b7754bc
commit 095d4fe02b
1 changed files with 2 additions and 2 deletions

View File

@ -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, <tt>getPredOpcode</tt>, 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)",