mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-22 10:33:23 +00:00
16 lines
250 B
LLVM
16 lines
250 B
LLVM
|
; Make sure that the constant propagator doesn't cause a sigfpe
|
||
|
;
|
||
|
; RUN: as < %s | opt -constprop
|
||
|
;
|
||
|
|
||
|
int "test"() {
|
||
|
%R = div int -2147483648, -1
|
||
|
ret int %R
|
||
|
}
|
||
|
|
||
|
int "test2"() {
|
||
|
%R = rem int -2147483648, -1
|
||
|
ret int %R
|
||
|
}
|
||
|
|