blob: 7bb5a8dcd22ff7e0cbffe87ab07a2c69d808c773 [file] [log] [blame]
Chris Lattner5dfb6c72006-10-07 21:54:08 +00001; RUN: llvm-as < %s | 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
5target endian = little
6target pointersize = 32
7target triple = "i686-apple-darwin8.7.2"
8
9implementation ; 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
17declare <4 x float> %llvm.x86.sse.sub.ss(<4 x float>, <4 x float>)