• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt < %s -instcombine -S | grep srem
2; PR3439
3
4define i32 @a(i32 %x) nounwind {
5entry:
6	%rem = srem i32 %x, 2
7	%and = and i32 %rem, 2
8	ret i32 %and
9}
10