summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-15 18:33:10 +0000
committerChris Lattner <sabre@nondot.org>2009-08-15 18:33:10 +0000
commite93f37350d827cc35c151e5820c58c822d33afad (patch)
treeeb124a3b9893867edfa60b2dce0b22c7e8f8d543 /docs
parent5dafafdeb4d89b37c6b7efbeabaa7d818c7023fe (diff)
downloadllvm-e93f37350d827cc35c151e5820c58c822d33afad.tar.gz
llvm-e93f37350d827cc35c151e5820c58c822d33afad.tar.bz2
llvm-e93f37350d827cc35c151e5820c58c822d33afad.tar.xz
wrap to 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79124 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/TestingGuide.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index 990dcee207..51ffa450b0 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -568,10 +568,12 @@ example, something like this works as you'd expect:</p>
<div class="doc_code">
<pre>
-define void @t2(&lt;2 x double&gt;* %r, &lt;2 x double&gt;* %A, double %B) nounwind {
+define void @t2(&lt;2 x double&gt;* %r, &lt;2 x double&gt;* %A, double %B) {
%tmp3 = load &lt;2 x double&gt;* %A, align 16
%tmp7 = insertelement &lt;2 x double&gt; undef, double %B, i32 0
- %tmp9 = shufflevector &lt;2 x double&gt; %tmp3, &lt;2 x double&gt; %tmp7, &lt;2 x i32&gt; &lt; i32 0, i32 2 &gt;
+ %tmp9 = shufflevector &lt;2 x double&gt; %tmp3,
+ &lt;2 x double&gt; %tmp7,
+ &lt;2 x i32&gt; &lt; i32 0, i32 2 &gt;
store &lt;2 x double&gt; %tmp9, &lt;2 x double&gt;* %r, align 16
ret void