reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Basic/Targets/OSTargets.h
   89       : OSTargetInfo<Target>(Triple, Opts) {
   94     if (Triple.isMacOSX())
   95       this->TLSSupported = !Triple.isMacOSXVersionLT(10, 7);
   96     else if (Triple.isiOS()) {
   99       if (Triple.isArch64Bit())
  100         this->TLSSupported = !Triple.isOSVersionLT(8);
  101       else if (Triple.isArch32Bit()) {
  102         if (!Triple.isSimulatorEnvironment())
  103           this->TLSSupported = !Triple.isOSVersionLT(9);
  105           this->TLSSupported = !Triple.isOSVersionLT(10);
  107     } else if (Triple.isWatchOS()) {
  108       if (!Triple.isSimulatorEnvironment())
  109         this->TLSSupported = !Triple.isOSVersionLT(2);
  111         this->TLSSupported = !Triple.isOSVersionLT(3);