]> granicus.if.org Git - clang/commitdiff
Add comment before CheckObjCARCConversion is called on
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 21 Jun 2011 18:19:51 +0000 (18:19 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 21 Jun 2011 18:19:51 +0000 (18:19 +0000)
Expr value not getting changed by this call.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133527 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaCXXCast.cpp

index 5f1a355c8af8e91688594f768c00ce09d14196da..40086d6eff764e0cef1eb35fa2a2df80d9419f72 100644 (file)
@@ -642,6 +642,7 @@ CheckReinterpretCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
     }
   } else if (tcr == TC_Success && Self.getLangOptions().ObjCAutoRefCount) {
     Expr *Exp = SrcExpr.get();
+    // Note that Exp does not change with CCK_OtherCast cat type
     Self.CheckObjCARCConversion(OpRange, DestType,
                                 Exp, Sema::CCK_OtherCast);
   }
@@ -707,6 +708,7 @@ CheckStaticCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
       Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
     if (Self.getLangOptions().ObjCAutoRefCount) {
       Expr *Exp = SrcExpr.get();
+      // Note that Exp does not change with CCK_OtherCast cat type
       Self.CheckObjCARCConversion(OpRange, DestType,
                                   Exp, Sema::CCK_OtherCast);
     }