Fix codegen for references to available_externally symbols. This fixes
[oota-llvm.git] / test / CodeGen / ARM / arguments_f64_backfill.ll
1 ; RUN: llvm-as < %s | llc -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)