diff options
| author | Bill Wendling <isanbard@gmail.com> | 2012-04-24 11:03:50 +0000 | 
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2012-04-24 11:03:50 +0000 | 
| commit | f1b14b719f3a51b062a4d28f8309f8dfb69427e4 (patch) | |
| tree | 461115d6fb31b29d6b6c0de05b45bef8c7cb6cd2 /llvm/lib/CodeGen | |
| parent | 1981c0e533ef60e9b3eb02c87b20db7cae7f6352 (diff) | |
| download | bcm5719-llvm-f1b14b719f3a51b062a4d28f8309f8dfb69427e4.tar.gz bcm5719-llvm-f1b14b719f3a51b062a4d28f8309f8dfb69427e4.zip  | |
Look for the 'Is Simulated' module flag. This indicates that the program is compiled to run on a simulator.
llvm-svn: 155435
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp index 9925185be12..7a89e3ca630 100644 --- a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp +++ b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp @@ -379,7 +379,7 @@ emitModuleFlags(MCStreamer &Streamer,                  ArrayRef<Module::ModuleFlagEntry> ModuleFlags,                  Mangler *Mang, const TargetMachine &TM) const {    unsigned VersionVal = 0; -  unsigned GCFlags = 0; +  unsigned ImageInfoFlags = 0;    StringRef SectionVal;    for (ArrayRef<Module::ModuleFlagEntry>::iterator @@ -396,8 +396,9 @@ emitModuleFlags(MCStreamer &Streamer,      if (Key == "Objective-C Image Info Version")        VersionVal = cast<ConstantInt>(Val)->getZExtValue();      else if (Key == "Objective-C Garbage Collection" || -             Key == "Objective-C GC Only") -      GCFlags |= cast<ConstantInt>(Val)->getZExtValue(); +             Key == "Objective-C GC Only" || +             Key == "Objective-C Is Simulated") +      ImageInfoFlags |= cast<ConstantInt>(Val)->getZExtValue();      else if (Key == "Objective-C Image Info Section")        SectionVal = cast<MDString>(Val)->getString();    } @@ -424,7 +425,7 @@ emitModuleFlags(MCStreamer &Streamer,    Streamer.EmitLabel(getContext().                       GetOrCreateSymbol(StringRef("L_OBJC_IMAGE_INFO")));    Streamer.EmitIntValue(VersionVal, 4); -  Streamer.EmitIntValue(GCFlags, 4); +  Streamer.EmitIntValue(ImageInfoFlags, 4);    Streamer.AddBlankLine();  }  | 

