llvm/llvm/lib/TextAPI/Target.cpp

//===- Target.cpp -----------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#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) {}

} // end namespace MachO.
} // end namespace llvm.