minix/external/bsd/llvm/dist/clang/test/CodeGenObjC/arc-no-runtime.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

13 lines
395 B
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-arc -emit-llvm %s -o - | FileCheck %s
// rdar://problem/9224855
id make(void) __attribute__((ns_returns_retained));
void test0() {
make();
id x = 0;
// CHECK: call void @objc_release(
// CHECK: call void @objc_storeStrong(
}
// CHECK: declare extern_weak void @objc_release(
// CHECK: declare extern_weak void @objc_storeStrong(