mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 16:52:21 -04:00
20 lines
686 B
C++
20 lines
686 B
C++
//===-- TargetOptionsCommandFlags.h ----------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Helper to create TargetOptions from command line flags.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Support/CodeGen.h"
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
namespace lld {
|
|
llvm::TargetOptions InitTargetOptionsFromCodeGenFlags();
|
|
llvm::CodeModel::Model GetCodeModelFromCMModel();
|
|
}
|