another v2f32 case, in this case showing poor codegen.
authorChris Lattner <sabre@nondot.org>
Mon, 5 Jul 2010 05:52:56 +0000 (05:52 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 5 Jul 2010 05:52:56 +0000 (05:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107614 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/v2f32.ll

index 93ab68ee169df3942cac003e3f0239fc85195c11..9c4b773a6190904fb7826db61daa195682cd5325 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86-64 -asm-verbose=0 -o - | FileCheck %s -check-prefix=X64
+; RUN: llc < %s -march=x86-64 -mcpu=penryn -asm-verbose=0 -o - | FileCheck %s -check-prefix=X64
 ; RUN: llc < %s -mcpu=yonah -march=x86 -asm-verbose=0 -o - | FileCheck %s -check-prefix=X32
 
 ; PR7518
@@ -22,3 +22,18 @@ define void @test1(<2 x float> %Q, float *%P2) nounwind {
 ; X32-NEXT: ret
 }
 
+
+define <2 x float> @test2(<2 x float> %Q, <2 x float> %R, <2 x float> *%P) nounwind {
+  %Z = fadd <2 x float> %Q, %R
+  ret <2 x float> %Z
+  
+; X64: test2:
+; X64-NEXT: insertps $0
+; X64-NEXT: insertps $16
+; X64-NEXT: insertps $0
+; X64-NEXT: insertps $16
+; X64-NEXT: addps
+; X64-NEXT: movaps
+; X64-NEXT: pshufd
+; X64-NEXT: ret
+}