Reid Spencer | 69ccadd | 2006-12-02 04:23:10 +0000 | [diff] [blame] | 1 | ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=sse | grep movaps |
Chris Lattner | 5dfb6c7 | 2006-10-07 21:54:08 +0000 | [diff] [blame] | 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>) |