From e93f37350d827cc35c151e5820c58c822d33afad Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 15 Aug 2009 18:33:10 +0000 Subject: wrap to 80 cols git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79124 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/TestingGuide.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'docs') 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:

-define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) nounwind  {
+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 >
+	%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
         
-- 
cgit v1.2.3