[llvm-commits] [llvm] r79124 - /llvm/trunk/docs/TestingGuide.html
Chris Lattner
sabre at nondot.org
Sat Aug 15 11:33:10 PDT 2009
Author: lattner
Date: Sat Aug 15 13:33:10 2009
New Revision: 79124
URL: http://llvm.org/viewvc/llvm-project?rev=79124&view=rev
Log:
wrap to 80 cols
Modified:
llvm/trunk/docs/TestingGuide.html
Modified: llvm/trunk/docs/TestingGuide.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TestingGuide.html?rev=79124&r1=79123&r2=79124&view=diff
==============================================================================
--- llvm/trunk/docs/TestingGuide.html (original)
+++ llvm/trunk/docs/TestingGuide.html Sat Aug 15 13:33:10 2009
@@ -568,10 +568,12 @@
<div class="doc_code">
<pre>
-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
More information about the llvm-commits
mailing list