summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll
blob: b0a17467455a7d610719a5a8ab9ba52f91b647bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -instcombine -S | FileCheck %s

define i1 @PR2330(i32 %a) {
; CHECK-LABEL: @PR2330(
; CHECK-NEXT:    [[TOBOOL:%.*]] = icmp ne i32 %a, 0
; CHECK-NEXT:    ret i1 [[TOBOOL]]
;
  %tmp15 = shl i32 1, %a
  %tmp237 = and i32 %tmp15, 1
  %toBool = icmp eq i32 %tmp237, 0
  ret i1 %toBool
}

OpenPOWER on IntegriCloud