You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc -march=mipsel -relocation-model=static < %s | FileCheck %s
|
|
|
|
define i32 @foo(i32 %a) nounwind readnone {
|
|
entry:
|
|
; check that stack size is zero.
|
|
; CHECK-NOT: addiu $sp, $sp
|
|
%add = add nsw i32 %a, 1
|
|
ret i32 %add
|
|
}
|