]> granicus.if.org Git - clang/commitdiff
documentation: remove confusing reference to properties.
authorAdrian Prantl <aprantl@apple.com>
Fri, 7 Jun 2013 01:10:48 +0000 (01:10 +0000)
committerAdrian Prantl <aprantl@apple.com>
Fri, 7 Jun 2013 01:10:48 +0000 (01:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@183475 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDebugInfo.cpp

index f51831ca2bcf4953490108be7e7e3caa0d4d98cc..d0dcc5305370430183f0044f95fcfface344fde6 100644 (file)
@@ -1981,9 +1981,9 @@ llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile Unit, bool D
 /// ivars and property accessors.
 unsigned CGDebugInfo::Checksum(const ObjCInterfaceDecl
                                *ID) {
-  // The assumption is that the number of ivars and property accessors
-  // can only increase monotonically, so it is safe to just use the
-  // sum of these as a checksum.
+  // The assumption is that the number of ivars can only increase
+  // monotonically, so it is safe to just use their current number as
+  // a checksum.
   unsigned Sum = 0;
   for (const ObjCIvarDecl *Ivar = ID->all_declared_ivar_begin();
        Ivar != 0; Ivar = Ivar->getNextIvar())