10 lines · plain
1; RUN: llc -mtriple=mipsel -relocation-model=static < %s | FileCheck %s 2 3define i32 @foo(i32 %a) nounwind readnone {4entry:5; check that stack size is zero.6; CHECK-NOT: addiu $sp, $sp7 %add = add nsw i32 %a, 18 ret i32 %add9}10