summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaExpr.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2010-11-19 18:16:46 +0000
committerFariborz Jahanian <fjahanian@apple.com>2010-11-19 18:16:46 +0000
commite7d62020a7983e8b9c900d91f98366a1744e1799 (patch)
treec219e8cf5fbc2af04fc7c01858a27407e006ff09 /clang/lib/Sema/SemaExpr.cpp
parent76aed40813d5eee51d640854cfabe2aaa239efc1 (diff)
downloadbcm5719-llvm-e7d62020a7983e8b9c900d91f98366a1744e1799.tar.gz
bcm5719-llvm-e7d62020a7983e8b9c900d91f98366a1744e1799.zip
objc_msgSend is not a builtin type in non-objc mode.
Fixes //rdar://8686888 llvm-svn: 119813
Diffstat (limited to 'clang/lib/Sema/SemaExpr.cpp')
-rw-r--r--clang/lib/Sema/SemaExpr.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp
index b70486a1b81..bc811d0e77b 100644
--- a/clang/lib/Sema/SemaExpr.cpp
+++ b/clang/lib/Sema/SemaExpr.cpp
@@ -4295,8 +4295,13 @@ Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
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();
OpenPOWER on IntegriCloud