aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaCXX/builtin_objc_msgSend.cpp
blob: 8e91724b38157fe6b55709fdb6c2777f0ce2f3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 %s -fsyntax-only -verify
// expected-no-diagnostics

typedef struct objc_selector *SEL;
typedef struct objc_object *id;

extern "C" __attribute__((visibility("default"))) id objc_msgSend(id self, SEL op, ...)
    __attribute__((visibility("default")));

inline void TCFReleaseGC(void * object)
{
 static SEL SEL_release;
 objc_msgSend((id)object, SEL_release);
}