mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
10 lines
168 B
LLVM
10 lines
168 B
LLVM
; RUN: opt < %s -instcombine -S | grep "ret i1 false"
|
|
; PR2276
|
|
|
|
define i1 @f(i32 %x) {
|
|
%A = or i32 %x, 1
|
|
%B = srem i32 %A, 1
|
|
%C = icmp ne i32 %B, 0
|
|
ret i1 %C
|
|
}
|