Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / lld / Common / TargetOptionsCommandFlags.cpp
blob0860e8ff8ef8e146f33ac8b67fb71e0ce54088ab
1 //===-- TargetOptionsCommandFlags.cpp ---------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "lld/Common/TargetOptionsCommandFlags.h"
10 #include "llvm/CodeGen/CommandFlags.h"
11 #include "llvm/Target/TargetOptions.h"
12 #include "llvm/TargetParser/Triple.h"
13 #include <optional>
15 llvm::TargetOptions lld::initTargetOptionsFromCodeGenFlags() {
16 return llvm::codegen::InitTargetOptionsFromCodeGenFlags(llvm::Triple());
19 std::optional<llvm::Reloc::Model> lld::getRelocModelFromCMModel() {
20 return llvm::codegen::getExplicitRelocModel();
23 std::optional<llvm::CodeModel::Model> lld::getCodeModelFromCMModel() {
24 return llvm::codegen::getExplicitCodeModel();
27 std::string lld::getCPUStr() { return llvm::codegen::getCPUStr(); }
29 std::vector<std::string> lld::getMAttrs() { return llvm::codegen::getMAttrs(); }