blob: 4d4797720c5318c8e41e1cf92d579ff03e7f1a1d [file] [log] [blame]
Chandler Carrutha5a29f92012-07-02 12:47:22 +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 }