XFAIL test/CodeGen/Generic/MachineBranchProb.ll on Hexagon (PR23377)
[oota-llvm.git] / test / CodeGen / Mips / stacksize.ll
1 ; RUN: llc -march=mipsel -relocation-model=static < %s | FileCheck %s 
2
3 define i32 @foo(i32 %a) nounwind readnone {
4 entry:
5 ; check that stack size is zero.
6 ; CHECK-NOT: addiu $sp, $sp
7   %add = add nsw i32 %a, 1
8   ret i32 %add
9 }