r183475 - documentation: remove confusing reference to properties.
Adrian Prantl
aprantl at apple.com
Thu Jun 6 18:10:48 PDT 2013
Author: adrian
Date: Thu Jun 6 20:10:48 2013
New Revision: 183475
URL: http://llvm.org/viewvc/llvm-project?rev=183475&view=rev
Log:
documentation: remove confusing reference to properties.
Modified:
cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=183475&r1=183474&r2=183475&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Thu Jun 6 20:10:48 2013
@@ -1981,9 +1981,9 @@ llvm::DIType CGDebugInfo::getOrCreateTyp
/// 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())
More information about the cfe-commits
mailing list