blob: 9de06600c0c3d0a775298bf70accf80d8d3f145b [file] [log] [blame]
Duncan Sands571fd9a2011-01-14 14:44:12 +00001; RUN: opt < %s -instsimplify -S | FileCheck %s
2
3define i32 @shift_select(i1 %cond) {
Stephen Linc1c7a132013-07-14 01:42:54 +00004; CHECK-LABEL: @shift_select(
Duncan Sands571fd9a2011-01-14 14:44:12 +00005 %s = select i1 %cond, i32 0, i32 1
6 %r = lshr i32 %s, 1
7 ret i32 %r
8; CHECK: ret i32 0
9}