Home | History | Annotate | Download | only in Fast-ISel
      1 ; RUN: llc < %s -march=mipsel -mcpu=mips32r2 -O0 -relocation-model=pic \
      2 ; RUN:     -fast-isel-verbose 2>&1 | FileCheck %s
      3 
      4 ; CHECK:      FastISel missed call:
      5 ; CHECK-SAME: %call = call fastcc i32 @foo(i32 signext %a, i32 signext %b)
      6 
      7 define internal i32 @bar(i32 signext %a, i32 signext %b) {
      8   %s = and i32 %a, %b
      9   ret i32 %s
     10 }
     11 
     12 define i32 @foo(i32 signext %a, i32 signext %b) {
     13   %call = call fastcc i32 @foo(i32 signext %a, i32 signext %b)
     14   ret i32 %call
     15 }
     16