summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2011-09-10 06:18:15 +0000
committerJohn McCall <rjmccall@apple.com>2011-09-10 06:18:15 +0000
commit2d637d2e798c6e7a34aec500514c4a756c88cf29 (patch)
treec9a33425385b580e780e8af7b1469a824b034c8b /clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
parentf1e2924b6b910e98a03ffd883a168d24e63192c5 (diff)
downloadbcm5719-llvm-2d637d2e798c6e7a34aec500514c4a756c88cf29.tar.gz
bcm5719-llvm-2d637d2e798c6e7a34aec500514c4a756c88cf29.zip
Rename the ARC cast kinds to start with "ARC".
llvm-svn: 139466
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
index db4dc2f2fec..0daa252ecce 100644
--- a/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
+++ b/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
@@ -211,10 +211,10 @@ void ExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex,
continue;
// The analyzer doesn't do anything special with these casts,
// since it understands retain/release semantics already.
- case CK_ObjCProduceObject:
- case CK_ObjCConsumeObject:
- case CK_ObjCReclaimReturnedObject:
- case CK_ObjCExtendBlockObject: // Fall-through.
+ case CK_ARCProduceObject:
+ case CK_ARCConsumeObject:
+ case CK_ARCReclaimReturnedObject:
+ case CK_ARCExtendBlockObject: // Fall-through.
// True no-ops.
case CK_NoOp:
case CK_FunctionToPointerDecay: {
OpenPOWER on IntegriCloud