New test.
[oota-llvm.git] / test / CodeGen / X86 / 2006-10-07-ScalarSSEMiscompile.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=sse | grep movaps
2 ; Test that the load is NOT folded into the intrinsic, which would zero the top
3 ; elts of the loaded vector.
4
5 target endian = little
6 target pointersize = 32
7 target triple = "i686-apple-darwin8.7.2"
8
9 implementation   ; Functions:
10
11 <4 x float> %test(<4 x float> %A, <4 x float>* %B) {
12         %BV = load <4 x float>* %B
13         %tmp28 = tail call <4 x float> %llvm.x86.sse.sub.ss( <4 x float> %A, <4 x float> %BV)
14         ret <4 x float> %tmp28
15 }
16
17 declare <4 x float> %llvm.x86.sse.sub.ss(<4 x float>, <4 x float>)