Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / Mips / Fast-ISel / fastcc-miss.ll
blob0aec8d506f778af7b0957ac0f91f7d8669cdb373
1 ; RUN: llc < %s -march=mipsel -mcpu=mips32r2 -O0 -relocation-model=pic \
2 ; RUN:     -pass-remarks-missed=isel 2>&1 | FileCheck %s
4 ; CHECK:      FastISel missed call:
5 ; CHECK-SAME: %call = call fastcc i32 @foo(i32 signext %a, i32 signext %b)
7 define internal i32 @bar(i32 signext %a, i32 signext %b) {
8   %s = and i32 %a, %b
9   ret i32 %s
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