24 lines · plain
1; There is no real check here. If the test doesn't 2; assert it passes.3; RUN: llc -mtriple=mips64el -filetype=obj -mcpu=mips64r2 -disable-mips-delay-filler < %s 4; Run it again without extra nop in delay slot5; RUN: llc -mtriple=mips64el -filetype=obj -mcpu=mips64r2 < %s 6 7define i32 @bosco1(i32 %x) nounwind readnone {8entry:9 %inc = add i32 %x, 110 ret i32 %inc11}12 13define i32 @bosco2(i32 %x) nounwind readnone {14entry:15 %inc = add i32 %x, 116 ret i32 %inc17}18 19define i32 @bosco3(i32 %x) nounwind readnone {20entry:21 %inc = add i32 %x, 122 ret i32 %inc23}24