blob: 6beedf83cd6a2278fbcfc48f23788ff6ca81f557 [file] [log] [blame]
Dan Gohman18800922009-09-11 18:01:28 +00001; RUN: opt < %s -instcombine -S | grep srem
Eli Friedmana0fba532009-06-17 02:57:36 +00002; 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}