llvm-6502/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll
2003-09-16 15:29:54 +00:00

15 lines
207 B
LLVM

; Make sure that the constant propogator doesn't divide by zero!
;
; RUN: llvm-as < %s | opt -constprop
;
int "test"() {
%R = div int 12, 0
ret int %R
}
int "test2"() {
%R = rem int 12, 0
ret int %R
}