diff options
author | John McCall <rjmccall@apple.com> | 2011-09-10 06:18:15 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-09-10 06:18:15 +0000 |
commit | 2d637d2e798c6e7a34aec500514c4a756c88cf29 (patch) | |
tree | c9a33425385b580e780e8af7b1469a824b034c8b /clang/lib/CodeGen/CGExprAgg.cpp | |
parent | f1e2924b6b910e98a03ffd883a168d24e63192c5 (diff) | |
download | bcm5719-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/CodeGen/CGExprAgg.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprAgg.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CGExprAgg.cpp b/clang/lib/CodeGen/CGExprAgg.cpp index 93c7bd8af6f..f965cf7e3f0 100644 --- a/clang/lib/CodeGen/CGExprAgg.cpp +++ b/clang/lib/CodeGen/CGExprAgg.cpp @@ -379,10 +379,10 @@ void AggExprEmitter::VisitCastExpr(CastExpr *E) { case CK_IntegralComplexToBoolean: case CK_IntegralComplexCast: case CK_IntegralComplexToFloatingComplex: - case CK_ObjCProduceObject: - case CK_ObjCConsumeObject: - case CK_ObjCReclaimReturnedObject: - case CK_ObjCExtendBlockObject: + case CK_ARCProduceObject: + case CK_ARCConsumeObject: + case CK_ARCReclaimReturnedObject: + case CK_ARCExtendBlockObject: llvm_unreachable("cast kind invalid for aggregate types"); } } |