2014-04-23 19:16:03 +08: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCTargetOptions.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2014-05-15 09:08:00 +08:00
|
|
|
MCTargetOptions::MCTargetOptions()
|
|
|
|
: SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false),
|
2014-08-27 02:39:50 +08:00
|
|
|
MCFatalWarnings(false), MCSaveTempLabels(false),
|
|
|
|
MCUseDwarfDirectory(false), ShowMCEncoding(false), ShowMCInst(false),
|
|
|
|
AsmVerbose(false), DwarfVersion(0) {}
|
2014-04-23 19:16:03 +08:00
|
|
|
|
|
|
|
} // end namespace llvm
|