1; There is no real check here. If the test doesn't
2; assert it passes.
3; RUN: llc -march=mips64el -filetype=obj -mcpu=mips64r2 -disable-mips-delay-filler < %s
4; Run it again without extra nop in delay slot
5; RUN: llc -march=mips64el -filetype=obj -mcpu=mips64r2 < %s
6
7define i32 @bosco1(i32 %x) nounwind readnone {
8entry:
9  %inc = add i32 %x, 1
10  ret i32 %inc
11}
12
13define i32 @bosco2(i32 %x) nounwind readnone {
14entry:
15  %inc = add i32 %x, 1
16  ret i32 %inc
17}
18
19define i32 @bosco3(i32 %x) nounwind readnone {
20entry:
21  %inc = add i32 %x, 1
22  ret i32 %inc
23}
24