64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
10 lines
218 B
LLVM
10 lines
218 B
LLVM
; RUN: not llc -march=bpf < %s 2> %t1
|
|
; RUN: FileCheck %s < %t1
|
|
; CHECK: Unsupport signed division
|
|
|
|
; Function Attrs: norecurse nounwind readnone
|
|
define i32 @test(i32 %len) #0 {
|
|
%1 = srem i32 %len, 15
|
|
ret i32 %1
|
|
}
|