Eliminate more uses of llvm-as and llvm-dis.
[oota-llvm.git] / test / CodeGen / ARM / arguments_f64_backfill.ll
1 ; RUN: llc < %s -mtriple=arm-linux-gnueabi -mattr=+vfp2 -float-abi=hard | grep {fcpys s0, s1}
2
3 define float @f(float %z, double %a, float %b) {
4         %tmp = call float @g(float %b)
5         ret float %tmp
6 }
7
8 declare float @g(float)