[clang] Document the return value of __builtin_COLUMN (#118360)
[llvm-project.git] / llvm / test / Transforms / InstCombine / 2008-07-08-ShiftOneAndOne.ll
blobfeff510175f7c9c6cc14aafac3d7d82604a0c85a
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
4 define i1 @PR2330(i32 %a) {
5 ; CHECK-LABEL: @PR2330(
6 ; CHECK-NEXT:    [[TMP1:%.*]] = icmp ne i32 [[A:%.*]], 0
7 ; CHECK-NEXT:    ret i1 [[TMP1]]
9   %tmp15 = shl i32 1, %a
10   %tmp237 = and i32 %tmp15, 1
11   %toBool = icmp eq i32 %tmp237, 0
12   ret i1 %toBool