blob: 0a07bf34bac917c71a519ef3e1f0040c9d90f4d3 [file] [log] [blame]
Dan Gohman18800922009-09-11 18:01:28 +00001; RUN: opt < %s -instcombine -S | grep {ashr i32 %val, 31}
Chris Lattner0a981d12009-03-20 22:41:15 +00002; PR3851
3
4define i32 @foo2(i32 %val) nounwind {
5entry:
6 %shr = ashr i32 %val, 15 ; <i32> [#uses=3]
7 %shr4 = ashr i32 %shr, 17 ; <i32> [#uses=1]
8 ret i32 %shr4
9 }