mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
Testcase which kills the constant folder
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6124 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8017a7575e
commit
2cfd1aef10
15
test/Transforms/ConstProp/2003-05-12-DivideError.ll
Normal file
15
test/Transforms/ConstProp/2003-05-12-DivideError.ll
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
; 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
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user