comparison clang/test/SemaCXX/builtin_objc_msgSend.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
3 // rdar://8686888
4
5 typedef struct objc_selector *SEL;
6 typedef struct objc_object *id;
7
8 extern "C" __attribute__((visibility("default"))) id objc_msgSend(id self, SEL op, ...)
9 __attribute__((visibility("default")));
10
11 inline void TCFReleaseGC(void * object)
12 {
13 static SEL SEL_release;
14 objc_msgSend((id)object, SEL_release);
15 }