blob: d8b2defea88d24113063050479ce4e7669583817 [file] [log] [blame]
Reid Spencer69ccadd2006-12-02 04:23:10 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=sse | grep movaps
Chris Lattner5dfb6c72006-10-07 21:54:08 +00002; 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>)