1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll
2002-05-03 20:25:40 +00:00

15 lines
202 B
LLVM

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