forked from OSchip/llvm-project
[Objective-C] Support a new special module flag that will be put into the
objc_imageinfo struct. rdar://17954668 llvm-svn: 222558
This commit is contained in:
parent
cbb18e342f
commit
c98ec0e70a
|
@ -470,7 +470,8 @@ emitModuleFlags(MCStreamer &Streamer,
|
|||
VersionVal = cast<ConstantInt>(Val)->getZExtValue();
|
||||
} else if (Key == "Objective-C Garbage Collection" ||
|
||||
Key == "Objective-C GC Only" ||
|
||||
Key == "Objective-C Is Simulated") {
|
||||
Key == "Objective-C Is Simulated" ||
|
||||
Key == "Objective-C Image Swift Version") {
|
||||
ImageInfoFlags |= cast<ConstantInt>(Val)->getZExtValue();
|
||||
} else if (Key == "Objective-C Image Info Section") {
|
||||
SectionVal = cast<MDString>(Val)->getString();
|
||||
|
|
Loading…
Reference in New Issue