diff options
-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) }; |