You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
611 B
21 lines
611 B
7 months ago
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
||
|
; RUN: opt -S -instsimplify < %s | FileCheck %s
|
||
|
|
||
|
; A 0 valued byval pointer may be valid
|
||
|
define i1 @byval_may_be_zero(i32* byval(i32) %ptr) null_pointer_is_valid {
|
||
|
; CHECK-LABEL: @byval_may_be_zero(
|
||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp eq i32* [[PTR:%.*]], null
|
||
|
; CHECK-NEXT: ret i1 [[CMP]]
|
||
|
;
|
||
|
%cmp = icmp eq i32* %ptr, null
|
||
|
ret i1 %cmp
|
||
|
}
|
||
|
|
||
|
define i1 @nonnull_may_be_zero(i32* nonnull %ptr) null_pointer_is_valid {
|
||
|
; CHECK-LABEL: @nonnull_may_be_zero(
|
||
|
; CHECK-NEXT: ret i1 false
|
||
|
;
|
||
|
%cmp = icmp eq i32* %ptr, null
|
||
|
ret i1 %cmp
|
||
|
}
|