mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 03:07:06 +00:00
f2f6ce65b7
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
441 B
LLVM
23 lines
441 B
LLVM
; RUN: opt < %s -instcombine -inline -S | not grep '-715827882'
|
|
; PR3142
|
|
|
|
define i32 @a(i32 %X) nounwind readnone {
|
|
entry:
|
|
%0 = sub i32 0, %X
|
|
%1 = sdiv i32 %0, -3
|
|
ret i32 %1
|
|
}
|
|
|
|
define i32 @b(i32 %X) nounwind readnone {
|
|
entry:
|
|
%0 = call i32 @a(i32 -2147483648)
|
|
ret i32 %0
|
|
}
|
|
|
|
define i32 @c(i32 %X) nounwind readnone {
|
|
entry:
|
|
%0 = sub i32 0, -2147483648
|
|
%1 = sdiv i32 %0, -3
|
|
ret i32 %1
|
|
}
|