aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaExprObjC.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-12-01 01:37:36 +0000
committerDouglas Gregor <dgregor@apple.com>2011-12-01 01:37:36 +0000
commitf1d1ca5b2b40e66d927c2abd16d8baa21af6911f (patch)
tree76b7e90b42e7d5ce7e01943ce85c7a9d9dbd69f8 /lib/Sema/SemaExprObjC.cpp
parentf8d34ed0d0933350323d9f7a8521011d73dc98d5 (diff)
When sending a message to a receiver that has "unknown any" type,
force the unknown any type to "id" so that the message send can be completed without requiring a case. Fixes <rdar://problem/10506646>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaExprObjC.cpp')
-rw-r--r--lib/Sema/SemaExprObjC.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/Sema/SemaExprObjC.cpp b/lib/Sema/SemaExprObjC.cpp
index c4f01c093a..cc17e6b890 100644
--- a/lib/Sema/SemaExprObjC.cpp
+++ b/lib/Sema/SemaExprObjC.cpp
@@ -1211,9 +1211,13 @@ ExprResult Sema::BuildInstanceMessage(Expr *Receiver,
// and determine receiver type.
if (Receiver) {
if (Receiver->hasPlaceholderType()) {
- ExprResult result = CheckPlaceholderExpr(Receiver);
- if (result.isInvalid()) return ExprError();
- Receiver = result.take();
+ ExprResult Result;
+ if (Receiver->getType() == Context.UnknownAnyTy)
+ Result = forceUnknownAnyToType(Receiver, Context.getObjCIdType());
+ else
+ Result = CheckPlaceholderExpr(Receiver);
+ if (Result.isInvalid()) return ExprError();
+ Receiver = Result.take();
}
if (Receiver->isTypeDependent()) {