Add basic infrastructure and x86 support for preserving MachineMemOperand
[oota-llvm.git] / test / CodeGen / ARM / vrsqrts.ll
1 ; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s
2
3 define <2 x float> @vrsqrtsf32(<2 x float>* %A, <2 x float>* %B) nounwind {
4 ;CHECK: vrsqrtsf32:
5 ;CHECK: vrsqrts.f32
6         %tmp1 = load <2 x float>* %A
7         %tmp2 = load <2 x float>* %B
8         %tmp3 = call <2 x float> @llvm.arm.neon.vrsqrts.v2f32(<2 x float> %tmp1, <2 x float> %tmp2)
9         ret <2 x float> %tmp3
10 }
11
12 define <4 x float> @vrsqrtsQf32(<4 x float>* %A, <4 x float>* %B) nounwind {
13 ;CHECK: vrsqrtsQf32:
14 ;CHECK: vrsqrts.f32
15         %tmp1 = load <4 x float>* %A
16         %tmp2 = load <4 x float>* %B
17         %tmp3 = call <4 x float> @llvm.arm.neon.vrsqrts.v4f32(<4 x float> %tmp1, <4 x float> %tmp2)
18         ret <4 x float> %tmp3
19 }
20
21 declare <2 x float> @llvm.arm.neon.vrsqrts.v2f32(<2 x float>, <2 x float>) nounwind readnone
22 declare <4 x float> @llvm.arm.neon.vrsqrts.v4f32(<4 x float>, <4 x float>) nounwind readnone