Shrink Thumb2 movcc instructions.
[llvm/avr.git] / test / CodeGen / ARM / fpmem.ll
blob13653bbe6aa026372133dd2d01ac5ab7ac0b00e3
1 ; RUN: llvm-as < %s | llc -march=arm | \
2 ; RUN:   grep {mov r0, #0} | count 1
3 ; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | \
4 ; RUN:   grep {flds.*\\\[} | count 1
5 ; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | \
6 ; RUN:   grep {fsts.*\\\[} | count 1
8 define float @f1(float %a) {
9         ret float 0.000000e+00
12 define float @f2(float* %v, float %u) {
13         %tmp = load float* %v           ; <float> [#uses=1]
14         %tmp1 = fadd float %tmp, %u              ; <float> [#uses=1]
15         ret float %tmp1
18 define void @f3(float %a, float %b, float* %v) {
19         %tmp = fadd float %a, %b         ; <float> [#uses=1]
20         store float %tmp, float* %v
21         ret void