llvm-6502/test/Transforms/ConstProp/2003-05-12-DivideError.ll
2003-09-16 15:29:54 +00:00

16 lines
255 B
LLVM

; Make sure that the constant propagator doesn't cause a sigfpe
;
; RUN: llvm-as < %s | opt -constprop
;
int "test"() {
%R = div int -2147483648, -1
ret int %R
}
int "test2"() {
%R = rem int -2147483648, -1
ret int %R
}