Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / llvm / test / Transforms / InstCombine / early_constfold_changes_IR.ll
blob64fe1ef8e16d2f3d419b687f4a03f04a1d74613f
1 ; This run line verifies that we get the expected constant fold.
2 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
4 define i32 @foo(i32 %arg) #0 {
5 ; CHECK-LABEL: @foo(
6 ; CHECK-NEXT:  entry:
7 ; CHECK-NEXT:    [[AND:%.*]] = and i32 [[ARG:%.*]], 7
8 ; CHECK-NEXT:    ret i32 [[AND]]
10 entry:
11   %or = or i32 0, 7
12   %and = and i32 %arg, %or
13   ret i32 %and