2011-01-14-Thread.ll 209 B

123456789
  1. ; RUN: opt < %s -instsimplify -S | FileCheck %s
  2. define i32 @shift_select(i1 %cond) {
  3. ; CHECK-LABEL: @shift_select(
  4. %s = select i1 %cond, i32 0, i32 1
  5. %r = lshr i32 %s, 1
  6. ret i32 %r
  7. ; CHECK: ret i32 0
  8. }