Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / InstSimplify / null-ptr-is-valid-attribute.ll
blob61a1c8a69cc1553fda771c425dd907741e5e8625
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -passes=instsimplify < %s | FileCheck %s
4 ; A 0 valued byval pointer may be valid
5 define i1 @byval_may_be_zero(ptr byval(i32) %ptr) null_pointer_is_valid {
6 ; CHECK-LABEL: @byval_may_be_zero(
7 ; CHECK-NEXT:    [[CMP:%.*]] = icmp eq ptr [[PTR:%.*]], null
8 ; CHECK-NEXT:    ret i1 [[CMP]]
10   %cmp = icmp eq ptr %ptr, null
11   ret i1 %cmp
14 define i1 @nonnull_may_be_zero(ptr nonnull %ptr) null_pointer_is_valid {
15 ; CHECK-LABEL: @nonnull_may_be_zero(
16 ; CHECK-NEXT:    ret i1 false
18   %cmp = icmp eq ptr %ptr, null
19   ret i1 %cmp