You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.207
Former-commit-id: 3b152f462918d427ce18620a2cbe4f8b79650449
This commit is contained in:
parent
8e12397d70
commit
eb85e2fc17
@ -1,47 +0,0 @@
|
||||
; RUN: opt -objc-arc -S < %s | FileCheck %s
|
||||
|
||||
; Generated by compiling:
|
||||
;
|
||||
; id baz(void *X) { return (__bridge_transfer id)X; }
|
||||
;
|
||||
; void foo(id X) {
|
||||
; void *Y = 0;
|
||||
; if (X)
|
||||
; Y = (__bridge_retained void *)X;
|
||||
; baz(Y);
|
||||
; }
|
||||
;
|
||||
; clang -x objective-c -mllvm -enable-objc-arc-opts=0 -fobjc-arc -S -emit-llvm test.m
|
||||
;
|
||||
; And then hand-reduced further.
|
||||
|
||||
declare i8* @objc_autoreleaseReturnValue(i8*)
|
||||
declare i8* @objc_unsafeClaimAutoreleasedReturnValue(i8*)
|
||||
declare i8* @objc_retain(i8*)
|
||||
declare void @objc_release(i8*)
|
||||
|
||||
define void @foo(i8* %X) {
|
||||
entry:
|
||||
%0 = tail call i8* @objc_retain(i8* %X)
|
||||
%tobool = icmp eq i8* %0, null
|
||||
br i1 %tobool, label %if.end, label %if.then
|
||||
|
||||
if.then: ; preds = %entry
|
||||
%1 = tail call i8* @objc_retain(i8* nonnull %0)
|
||||
br label %if.end
|
||||
|
||||
if.end: ; preds = %if.then, %entry
|
||||
%Y.0 = phi i8* [ %1, %if.then ], [ null, %entry ]
|
||||
%2 = tail call i8* @objc_autoreleaseReturnValue(i8* %Y.0)
|
||||
%3 = tail call i8* @objc_unsafeClaimAutoreleasedReturnValue(i8* %2)
|
||||
tail call void @objc_release(i8* %0)
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK: if.then
|
||||
; CHECK: tail call i8* @objc_retain
|
||||
; CHECK-NEXT: call i8* @objc_autorelease
|
||||
; CHECK: %Y.0 = phi
|
||||
; CHECK-NEXT: tail call i8* @objc_unsafeClaimAutoreleasedReturnValue(i8* %Y.0)
|
||||
; CHECK-NEXT: tail call void @objc_release
|
||||
|
Reference in New Issue
Block a user