initial implementation of addressing mode 5
[oota-llvm.git] / test / CodeGen / ARM / fpmem.ll
1 ; RUN: llvm-as < %s | llc -march=arm &&
2 ; RUN: llvm-as < %s | llc -march=arm | grep flds | wc -l | grep 2 &&
3 ; RUN: llvm-as < %s | llc -march=arm | grep "flds.*\[" | wc -l | grep 1
4
5 float %g(float %a) {
6 entry:
7         ret float 0.000000e+00
8 }
9
10 float %g(float* %v) {
11 entry:
12         %tmp = load float* %v
13         ret float %tmp
14 }