]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/lib/Core/TargetOptionsCommandFlags.cpp
MFV r316862: 6410 teach zdb to perform object lookups by path
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / lib / Core / TargetOptionsCommandFlags.cpp
1 //===-- TargetOptionsCommandFlags.cpp ---------------------------*- C++ -*-===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file exists as a place for global variables defined in LLVM's
11 // CodeGen/CommandFlags.h. By putting the resulting object file in
12 // an archive and linking with it, the definitions will automatically be
13 // included when needed and skipped when already present.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "lld/Core/TargetOptionsCommandFlags.h"
18
19 #include "llvm/CodeGen/CommandFlags.h"
20 #include "llvm/Target/TargetOptions.h"
21
22 // Define an externally visible version of
23 // InitTargetOptionsFromCodeGenFlags, so that its functionality can be
24 // used without having to include llvm/CodeGen/CommandFlags.h, which
25 // would lead to multiple definitions of the command line flags.
26 llvm::TargetOptions lld::InitTargetOptionsFromCodeGenFlags() {
27   return ::InitTargetOptionsFromCodeGenFlags();
28 }
29
30 llvm::CodeModel::Model lld::GetCodeModelFromCMModel() {
31   return CMModel;
32 }