diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-15 18:33:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-15 18:33:10 +0000 |
commit | 724af2ca7703cc4caad194a03a3b4ab595d3224e (patch) | |
tree | 8fc156103fa20f04fc35c8e1b1ff5ae17c7c6620 /llvm/docs | |
parent | da108b4ed4e6e7267701e76d5fd3b87609c9ab77 (diff) | |
download | bcm5719-llvm-724af2ca7703cc4caad194a03a3b4ab595d3224e.tar.gz bcm5719-llvm-724af2ca7703cc4caad194a03a3b4ab595d3224e.zip |
wrap to 80 cols
llvm-svn: 79124
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/TestingGuide.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/docs/TestingGuide.html b/llvm/docs/TestingGuide.html index 990dcee2079..51ffa450b0b 100644 --- a/llvm/docs/TestingGuide.html +++ b/llvm/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(<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 |