Home | History | Annotate | Download | only in ARM
      1 ; RUN: llc < %s -mtriple=arm-linux-gnueabi | not grep r3
      2 ; PR4059
      3 
      4 define i32 @f(i64 %z, i32 %a, double %b) {
      5 	%tmp = call i32 @g(double %b)
      6 	ret i32 %tmp
      7 }
      8 
      9 declare i32 @g(double)
     10