1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/BPF/sdiv_error.ll
Alexei Starovoitov 025ed59858 BPF: emit an error message for unsupported signed division operation
Signed-off-by: Yonghong Song <yhs@plumgrid.com>
Signed-off-by: Alexei Starovoitov <ast@fb.com>
llvm-svn: 263842
2016-03-18 22:02:47 +00:00

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
}