diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-01-14 22:01:08 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-01-14 22:01:08 +0000 |
commit | 39c17a8f3006f4e4733d28d6e830623a223744a8 (patch) | |
tree | f1fe34c0dc2a6e525eecdfc0b702e8c04ce7f4af /clang/lib/CodeGen/CGObjCMac.cpp | |
parent | 0f6eabdd058e5a3fd29471d2df54921cf17dcd60 (diff) | |
download | bcm5719-llvm-39c17a8f3006f4e4733d28d6e830623a223744a8.tar.gz bcm5719-llvm-39c17a8f3006f4e4733d28d6e830623a223744a8.zip |
Improve comment.
llvm-svn: 199258
Diffstat (limited to 'clang/lib/CodeGen/CGObjCMac.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGObjCMac.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGObjCMac.cpp b/clang/lib/CodeGen/CGObjCMac.cpp index 2a04d5dfcaf..239c4e27336 100644 --- a/clang/lib/CodeGen/CGObjCMac.cpp +++ b/clang/lib/CodeGen/CGObjCMac.cpp @@ -4293,14 +4293,14 @@ llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF, /// unsigned flags; /// }; enum ImageInfoFlags { - eImageInfo_FixAndContinue = (1 << 0), // no longer set by clang + eImageInfo_FixAndContinue = (1 << 0), // This flag is no longer set by clang. eImageInfo_GarbageCollected = (1 << 1), eImageInfo_GCOnly = (1 << 2), - eImageInfo_OptimizedByDyld = (1 << 3), // set by the dyld shared cache + eImageInfo_OptimizedByDyld = (1 << 3), // This flag is set by the dyld shared cache. // A flag indicating that the module has no instances of a @synthesize of a // superclass variable. <rdar://problem/6803242> - eImageInfo_CorrectedSynthesize = (1 << 4), // no longer set by clang + eImageInfo_CorrectedSynthesize = (1 << 4), // This flag is no longer set by clang. eImageInfo_ImageIsSimulated = (1 << 5) }; |