Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / llvm / test / Transforms / InstCombine / pr24605.ll
blobf2f3edf97c1cb765f230ec720d375f51c7eb8378
1 ; RUN: opt -S -passes=instcombine < %s | FileCheck %s
3 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-unknown-linux-gnu"
6 define i1 @f(ptr %a, i8 %b) {
7 ; CHECK-LABEL: @f(
8 entry:
9   %or = or i8 %b, -117
10   %sub = add i8 %or, -1
11   store i8 %sub, ptr %a, align 1
12   %cmp = icmp ugt i8 %or, %sub
13   ret i1 %cmp
14 ; CHECK: ret i1 true