diff options
| author | Fariborz Jahanian <fjahanian@apple.com> | 2014-01-14 21:33:54 +0000 |
|---|---|---|
| committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-01-14 21:33:54 +0000 |
| commit | 0f6eabdd058e5a3fd29471d2df54921cf17dcd60 (patch) | |
| tree | 7d854cf359043c5a179340fb6ea571597770446f /clang/lib/CodeGen | |
| parent | 9778348172d4784e94f9343733dc8b37999dd85f (diff) | |
| download | bcm5719-llvm-0f6eabdd058e5a3fd29471d2df54921cf17dcd60.tar.gz bcm5719-llvm-0f6eabdd058e5a3fd29471d2df54921cf17dcd60.zip | |
ObjectiveC. add comment.
llvm-svn: 199257
Diffstat (limited to 'clang/lib/CodeGen')
| -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 2b2a5b83760..2a04d5dfcaf 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), + eImageInfo_FixAndContinue = (1 << 0), // no longer set by clang eImageInfo_GarbageCollected = (1 << 1), eImageInfo_GCOnly = (1 << 2), - eImageInfo_OptimizedByDyld = (1 << 3), // FIXME: When is this set. + eImageInfo_OptimizedByDyld = (1 << 3), // 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), + eImageInfo_CorrectedSynthesize = (1 << 4), // no longer set by clang eImageInfo_ImageIsSimulated = (1 << 5) }; |

