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.

10 lines
157 B

; RUN: opt < %s -instcombine -S | grep srem
; PR3439
define i32 @a(i32 %x) nounwind {
entry:
%rem = srem i32 %x, 2
%and = and i32 %rem, 2
ret i32 %and
}