2014-04-23 11:16:03 +00:00
|
|
|
//===- lib/MC/MCTargetOptions.cpp - MC Target Options --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-01-14 00:50:31 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2014-04-23 11:16:03 +00:00
|
|
|
#include "llvm/MC/MCTargetOptions.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2014-05-15 01:08:00 +00:00
|
|
|
MCTargetOptions::MCTargetOptions()
|
|
|
|
: SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false),
|
2014-08-26 18:39:50 +00:00
|
|
|
MCFatalWarnings(false), MCSaveTempLabels(false),
|
|
|
|
MCUseDwarfDirectory(false), ShowMCEncoding(false), ShowMCInst(false),
|
2015-01-14 00:50:31 +00:00
|
|
|
AsmVerbose(false), DwarfVersion(0), ABIName() {}
|
|
|
|
|
|
|
|
StringRef MCTargetOptions::getABIName() const {
|
|
|
|
return ABIName;
|
|
|
|
}
|
2014-04-23 11:16:03 +00:00
|
|
|
|
|
|
|
} // end namespace llvm
|