[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / ObjCARC / contract-attached-call-no-marker.ll
blob4fc238d7407d668e1d32050b65d9b6a46359e8da
1 ; RUN: opt -objc-arc-contract -S < %s | FileCheck %s
2 ; RUN: opt -passes=objc-arc-contract -S < %s | FileCheck %s
4 ; CHECK-LABEL: define void @test0() {
5 ; CHECK: %[[CALL:.*]] = notail call i8* @foo() [ "clang.arc.attachedcall"(i8* (i8*)* @llvm.objc.retainAutoreleasedReturnValue) ]
6 ; CHECK-NEXT: ret void
8 define void @test0() {
9   %call1 = call i8* @foo() [ "clang.arc.attachedcall"(i8* (i8*)* @llvm.objc.retainAutoreleasedReturnValue) ]
10   ret void
13 ; CHECK-LABEL: define void @test1() {
14 ; CHECK: %[[CALL:.*]] = notail call i8* @foo() [ "clang.arc.attachedcall"(i8* (i8*)* @llvm.objc.unsafeClaimAutoreleasedReturnValue) ]
15 ; CHECK-NEXT: ret void
17 define void @test1() {
18   %call1 = call i8* @foo() [ "clang.arc.attachedcall"(i8* (i8*)* @llvm.objc.unsafeClaimAutoreleasedReturnValue) ]
19   ret void
22 declare i8* @foo()
23 declare i8* @llvm.objc.retainAutoreleasedReturnValue(i8*)
24 declare i8* @llvm.objc.unsafeClaimAutoreleasedReturnValue(i8*)