diff options
| author | John McCall <rjmccall@apple.com> | 2011-11-07 05:09:54 +0000 | 
|---|---|---|
| committer | John McCall <rjmccall@apple.com> | 2011-11-07 05:09:54 +0000 | 
| commit | ffc8ca2d84560774a322c2e77c3f083c2d0c386b (patch) | |
| tree | 4ae28f064f4a8eecb80edae9966f5440ec19c6a0 /clang/lib/AST | |
| parent | 80815600487aa8194187b9a30efd27e79d8ef37c (diff) | |
| download | bcm5719-llvm-ffc8ca2d84560774a322c2e77c3f083c2d0c386b.tar.gz bcm5719-llvm-ffc8ca2d84560774a322c2e77c3f083c2d0c386b.zip  | |
Rip out CK_GetObjCProperty.
llvm-svn: 143910
Diffstat (limited to 'clang/lib/AST')
| -rw-r--r-- | clang/lib/AST/Expr.cpp | 3 | ||||
| -rw-r--r-- | clang/lib/AST/ExprConstant.cpp | 2 | 
2 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index 6eb6116b01b..848e0797444 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -1084,7 +1084,6 @@ void CastExpr::CheckCastConsistency() const {    case CK_Dependent:    case CK_LValueToRValue: -  case CK_GetObjCProperty:    case CK_NoOp:    case CK_PointerToBoolean:    case CK_IntegralToBoolean: @@ -1110,8 +1109,6 @@ const char *CastExpr::getCastKindName() const {      return "LValueBitCast";    case CK_LValueToRValue:      return "LValueToRValue"; -  case CK_GetObjCProperty: -    return "GetObjCProperty";    case CK_NoOp:      return "NoOp";    case CK_BaseToDerived: diff --git a/clang/lib/AST/ExprConstant.cpp b/clang/lib/AST/ExprConstant.cpp index 8ec16217a70..a9408f6384c 100644 --- a/clang/lib/AST/ExprConstant.cpp +++ b/clang/lib/AST/ExprConstant.cpp @@ -2526,7 +2526,6 @@ bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) {    case CK_BitCast:    case CK_Dependent: -  case CK_GetObjCProperty:    case CK_LValueBitCast:    case CK_UserDefinedConversion:    case CK_ARCProduceObject: @@ -2987,7 +2986,6 @@ bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) {      return ExprEvaluatorBaseTy::VisitCastExpr(E);    case CK_Dependent: -  case CK_GetObjCProperty:    case CK_LValueBitCast:    case CK_UserDefinedConversion:      return false;  | 

