mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
8a294363da
"not grep '-715827882'" performed as below...bad... Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more information. llvm-svn: 168430
25 lines
457 B
LLVM
25 lines
457 B
LLVM
; RUN: opt < %s -instcombine -inline -S | FileCheck %s
|
|
; PR3142
|
|
|
|
; CHECK-NOT: -715827882
|
|
|
|
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
|
|
}
|