if (CheckFunctionCall(FDecl, TheCall))
return ExprError();
- if (unsigned BuiltinID = FDecl->getBuiltinID())
- return CheckBuiltinFunctionCall(BuiltinID, TheCall);
+ if (unsigned BuiltinID = FDecl->getBuiltinID()) {
+ // When not in Objective-C mode, there is no builtin 'id' type.
+ // We won't have pre-defined library functions which use this type.
+ if (getLangOptions().ObjC1 ||
+ Context.BuiltinInfo.GetTypeString(BuiltinID)[0] != 'G')
+ return CheckBuiltinFunctionCall(BuiltinID, TheCall);
+ }
} else if (NDecl) {
if (CheckBlockCall(NDecl, TheCall))
return ExprError();
--- /dev/null
+// RUN: %clang_cc1 %s -fsyntax-only -verify
+// rdar://8686888
+
+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);
+}