summaryrefslogtreecommitdiff
path: root/lib/Sema/SemaExpr.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2014-06-26 21:22:16 +0000
committerFariborz Jahanian <fjahanian@apple.com>2014-06-26 21:22:16 +0000
commit1b9b13db0cf578d25a48d243e96ee78ebb6ea18e (patch)
tree51635cc7c1f59767603807aa7f2ae477836a9d5e /lib/Sema/SemaExpr.cpp
parentb408a524097296e13380620ebf414cc9fa389fc7 (diff)
downloadclang-1b9b13db0cf578d25a48d243e96ee78ebb6ea18e.tar.gz
clang-1b9b13db0cf578d25a48d243e96ee78ebb6ea18e.tar.bz2
clang-1b9b13db0cf578d25a48d243e96ee78ebb6ea18e.tar.xz
Objective-C ARC. Provide diagnostic and fix-it
when casting a retainable object to a objc_bridge_related CF type with the suggestion of applying the method specified in the bridging attribute to the object. // rdar://15932435 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211807 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaExpr.cpp')
-rw-r--r--lib/Sema/SemaExpr.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp
index 8153dff497..2f1d1a6172 100644
--- a/lib/Sema/SemaExpr.cpp
+++ b/lib/Sema/SemaExpr.cpp
@@ -5274,7 +5274,9 @@ Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange();
CheckTollFreeBridgeCast(castType, CastExpr);
-
+
+ CheckObjCBridgeRelatedCast(castType, CastExpr);
+
return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
}