mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-22 21:41:38 +00:00
16 lines
270 B
LLVM
16 lines
270 B
LLVM
; Make sure that the constant propagator doesn't cause a sigfpe
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop
|
|
;
|
|
|
|
int "test"() {
|
|
%R = div int -2147483648, -1
|
|
ret int %R
|
|
}
|
|
|
|
int "test2"() {
|
|
%R = rem int -2147483648, -1
|
|
ret int %R
|
|
}
|
|
|