xref: /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCTargetOptions.cpp (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 //===- lib/MC/MCTargetOptions.cpp - MC Target Options ---------------------===//
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 //===----------------------------------------------------------------------===//
8 
9 #include "llvm/MC/MCTargetOptions.h"
10 #include "llvm/ADT/StringRef.h"
11 
12 using namespace llvm;
13 
MCTargetOptions()14 MCTargetOptions::MCTargetOptions()
15     : MCRelaxAll(false), MCNoExecStack(false), MCFatalWarnings(false),
16       MCNoWarn(false), MCNoDeprecatedWarn(false), MCSaveTempLabels(false),
17       MCUseDwarfDirectory(false), MCIncrementalLinkerCompatible(false),
18       ShowMCEncoding(false), ShowMCInst(false), AsmVerbose(false),
19       PreserveAsmComments(true), Dwarf64(false) {}
20 
getABIName() const21 StringRef MCTargetOptions::getABIName() const {
22   return ABIName;
23 }
24 
getAssemblyLanguage() const25 StringRef MCTargetOptions::getAssemblyLanguage() const {
26   return AssemblyLanguage;
27 }
28