• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc -mtriple arm-linux-gnueabi -filetype asm -o - %s | FileCheck %s
2; PR4059
3
4declare i32 @g(double)
5
6define i32 @f(i64 %z, i32 %a, double %b) {
7  %tmp = call i32 @g(double %b)
8  ret i32 %tmp
9}
10
11; CHECK-LABEL: f:
12; CHECK-NOT: r3
13
14