blob: 053b82dd98fad21676088818057db21b7083c8de [file] [log] [blame]
Alexei Starovoitov7e453bb2016-03-18 22:02:47 +00001; RUN: not llc -march=bpf < %s 2> %t1
2; RUN: FileCheck %s < %t1
3; CHECK: Unsupport signed division
4
5; Function Attrs: norecurse nounwind readnone
6define i32 @test(i32 %len) #0 {
7 %1 = srem i32 %len, 15
8 ret i32 %1
9}