llvm-6502/test/CodeGen/X86/vec_return.ll
Jakob Stoklund Olesen 61f46de349 Fix test for Windows as well.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144038 91177308-0d34-0410-b5e6-96231b3b80d8
2011-11-07 23:10:43 +00:00

17 lines
395 B
LLVM

; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s
; Without any typed operations, always use the smaller xorps.
; CHECK: test
; CHECK: xorps
define <2 x double> @test() {
ret <2 x double> zeroinitializer
}
; Prefer a constant pool load here.
; CHECK: test2
; CHECK-NOT: shuf
; CHECK: movaps {{.*}}CPI
define <4 x i32> @test2() nounwind {
ret <4 x i32> < i32 0, i32 0, i32 1, i32 0 >
}