summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJyotsna Verma <jverma@codeaurora.org>2012-11-15 21:21:01 +0000
committerJyotsna Verma <jverma@codeaurora.org>2012-11-15 21:21:01 +0000
commitca458e792a34da4d2053c97fc226a4c6ada3e75c (patch)
tree5263eec030cb1a0ae7ee946bef30d17ed5450dba /docs
parent0301bc54ad23c9dff0370dffaf6eb3eabba42cc4 (diff)
downloadllvm-ca458e792a34da4d2053c97fc226a4c6ada3e75c.tar.gz
llvm-ca458e792a34da4d2053c97fc226a4c6ada3e75c.tar.bz2
llvm-ca458e792a34da4d2053c97fc226a4c6ada3e75c.tar.xz
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/HowToUseInstrMappings.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/HowToUseInstrMappings.rst b/docs/HowToUseInstrMappings.rst
index b51e74e23c..bf9278e770 100644
--- a/docs/HowToUseInstrMappings.rst
+++ b/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, <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)",