You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
395 B
14 lines
395 B
// 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(
|