Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGenObjC/arc.ll @ 180:680fa57a2f20
fix compile errors.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 30 May 2020 17:44:06 +0900 |
parents | 1d019706d866 |
children | 2e18cbf3894f |
line wrap: on
line source
; RUN: %clang_cc1 -Os -emit-llvm -fobjc-arc -o - %s | FileCheck %s target triple = "x86_64-apple-darwin10" declare i8* @llvm.objc.retain(i8*) declare void @llvm.objc.release(i8*) ; CHECK-LABEL: define void @test( ; CHECK-NOT: @objc_ ; CHECK: } define void @test(i8* %x, i1* %p) nounwind { entry: br label %loop loop: call i8* @llvm.objc.retain(i8* %x) %q = load i1, i1* %p br i1 %q, label %loop.more, label %exit loop.more: call void @llvm.objc.release(i8* %x) br label %loop exit: call void @llvm.objc.release(i8* %x) ret void }