diff options
author | Adrian Prantl <aprantl@apple.com> | 2013-06-07 01:10:48 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2013-06-07 01:10:48 +0000 |
commit | 817bbb3a81609b819b4c8f24b3769e06e732336b (patch) | |
tree | 25f30c63e76ec929c311abfc7e73657bd98e9771 /clang/lib/CodeGen | |
parent | b8fad1a37cf580f89444e25abd883df40812c1f5 (diff) | |
download | bcm5719-llvm-817bbb3a81609b819b4c8f24b3769e06e732336b.tar.gz bcm5719-llvm-817bbb3a81609b819b4c8f24b3769e06e732336b.zip |
documentation: remove confusing reference to properties.
llvm-svn: 183475
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index f51831ca2bc..d0dcc530537 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -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()) |