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
415 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 @llvm.objc.release(
// CHECK: call void @llvm.objc.storeStrong(
}
// CHECK: declare extern_weak void @llvm.objc.release(
// CHECK: declare extern_weak void @llvm.objc.storeStrong(