1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; RUN: opt -S < %s | FileCheck %s
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
define void @test_none(ptr captures(none) %p) {
; CHECK-LABEL: define void @test_none(
; CHECK-SAME: ptr captures(none) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
define void @test_address(ptr captures(address) %p) {
; CHECK-LABEL: define void @test_address(
; CHECK-SAME: ptr captures(address) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
define void @test_address_is_null(ptr captures(address_is_null) %p) {
; CHECK-LABEL: define void @test_address_is_null(
; CHECK-SAME: ptr captures(address_is_null) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
define void @test_address_provenance(ptr captures(address, provenance) %p) {
; CHECK-LABEL: define void @test_address_provenance(
; CHECK-SAME: ptr captures(address, provenance) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
define void @test_address_read_provenance(ptr captures(address, read_provenance) %p) {
; CHECK-LABEL: define void @test_address_read_provenance(
; CHECK-SAME: ptr captures(address, read_provenance) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
define void @test_ret(ptr captures(ret: address, provenance) %p) {
; CHECK-LABEL: define void @test_ret(
; CHECK-SAME: ptr captures(ret: address, provenance) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
define void @test_address_is_null_and_ret(ptr captures(address_is_null, ret: address, provenance) %p) {
; CHECK-LABEL: define void @test_address_is_null_and_ret(
; CHECK-SAME: ptr captures(address_is_null, ret: address, provenance) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
define void @test_address_and_ret_none(ptr captures(address, ret: none) %p) {
; CHECK-LABEL: define void @test_address_and_ret_none(
; CHECK-SAME: ptr captures(address, ret: none) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
; Duplicates callpse into one.
define void @test_duplicate(ptr captures(address, address) %p) {
; CHECK-LABEL: define void @test_duplicate(
; CHECK-SAME: ptr captures(address) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
; read_provenance is a subset of provenance.
define void @test_duplicate_read_provenance(ptr captures(read_provenance, provenance) %p) {
; CHECK-LABEL: define void @test_duplicate_read_provenance(
; CHECK-SAME: ptr captures(provenance) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
; address_is_null is a subset of address.
define void @test_duplicate_address_is_null(ptr captures(address_is_null, address) %p) {
; CHECK-LABEL: define void @test_duplicate_address_is_null(
; CHECK-SAME: ptr captures(address) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
; Return-only none is same as plain none.
define void @test_ret_none(ptr captures(ret: none) %p) {
; CHECK-LABEL: define void @test_ret_none(
; CHECK-SAME: ptr captures(none) [[P:%.*]]) {
; CHECK-NEXT: ret void
;
ret void
}
|