You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; 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
|
|
}
|