#include "llvm/TextAPI/Target.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Support/raw_ostream.h"
namespace llvm {
namespace MachO {
Expected<Target> Target::create(StringRef TargetValue) { … }
operator basic_string()
raw_ostream &operator<<(raw_ostream &OS, const Target &Target) { … }
PlatformVersionSet mapToPlatformVersionSet(ArrayRef<Target> Targets) { … }
PlatformSet mapToPlatformSet(ArrayRef<Target> Targets) { … }
ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets) { … }
std::string getTargetTripleName(const Target &Targ) { … }
}
}