Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / JumpThreading / nonnull-gep-out-of-bounds.ll
blob683e723f1b3395c9f1bbd2f41ca1238a50ba014f
1 ; RUN: opt -passes=jump-threading -S %s -o - | FileCheck %s
3 define i32 @f(ptr %a, i64 %i) {
4 entry:
5   store i64 0, ptr %a, align 8
6   %p = getelementptr i64, ptr %a, i64 %i
7   %c = icmp eq ptr %p, null
8   ; `%a` is non-null at the end of the block, because we store through it.
9   ; However, `%p` is derived from `%a` via a GEP that is not `inbounds`, therefore we cannot judge `%p` is non-null as well
10   ; and must retain the `icmp` instruction.
11   ; CHECK: %c = icmp eq ptr %p, null
12   br i1 %c, label %if.else, label %if.then
13 if.then:
14   ret i32 0
16 if.else:
17   ret i32 1