summaryrefslogtreecommitdiffstats
path: root/llvm/docs/CommandGuide
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-06-12 00:48:47 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-06-12 00:48:47 +0000
commit19408a76a60ef948efe259d1ffd9f16c62b95208 (patch)
tree8f110aafd99e9778cf322fc60870c737f6ebf47a /llvm/docs/CommandGuide
parent4425368365dbec10f8664eb060d5bc05613593a6 (diff)
downloadbcm5719-llvm-19408a76a60ef948efe259d1ffd9f16c62b95208.tar.gz
bcm5719-llvm-19408a76a60ef948efe259d1ffd9f16c62b95208.zip
FileCheck docs: remove leftover HTML markup.
llvm-svn: 158344
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r--llvm/docs/CommandGuide/FileCheck.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst
index c0f64a413e0..b4d4477122d 100644
--- a/llvm/docs/CommandGuide/FileCheck.rst
+++ b/llvm/docs/CommandGuide/FileCheck.rst
@@ -138,9 +138,9 @@ testing different architectural variants with llc. Here's a simple example:
.. code-block:: perl
; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin9 -mattr=sse41 \
- ; RUN: | FileCheck %s -check-prefix=X32>
+ ; RUN: | FileCheck %s -check-prefix=X32
; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 -mattr=sse41 \
- ; RUN: | FileCheck %s -check-prefix=X64>
+ ; RUN: | FileCheck %s -check-prefix=X64
define <4 x i32> @pinsrd_1(i32 %s, <4 x i32> %tmp) nounwind {
%tmp1 = insertelement <4 x i32>; %tmp, i32 %s, i32 1
@@ -170,13 +170,13 @@ example, something like this works as you'd expect:
.. code-block:: perl
- define void @t2(<2 x double>* %r, <2 x double&gt;* %A, double %B) {
- %tmp3 = load <2 x double&gt;* %A, align 16
- %tmp7 = insertelement <2 x double&gt; undef, double %B, i32 0
- %tmp9 = shufflevector <2 x double&gt; %tmp3,
- <2 x double&gt; %tmp7,
- <2 x i32&gt; < i32 0, i32 2 &gt;
- store <2 x double&gt; %tmp9, <2 x double&gt;* %r, align 16
+ define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) {
+ %tmp3 = load <2 x double>* %A, align 16
+ %tmp7 = insertelement <2 x double> undef, double %B, i32 0
+ %tmp9 = shufflevector <2 x double> %tmp3,
+ <2 x double> %tmp7,
+ <2 x i32> < i32 0, i32 2 >
+ store <2 x double> %tmp9, <2 x double>* %r, align 16
ret void
; CHECK: t2:
OpenPOWER on IntegriCloud