LLVM API Documentation
00001 //===- lib/MC/MCTargetOptions.cpp - MC Target Options --------------------===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #include "llvm/MC/MCTargetOptions.h" 00011 00012 namespace llvm { 00013 00014 MCTargetOptions::MCTargetOptions() 00015 : SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false), 00016 MCFatalWarnings(false), MCSaveTempLabels(false), 00017 MCUseDwarfDirectory(false), ShowMCEncoding(false), ShowMCInst(false), 00018 AsmVerbose(false), DwarfVersion(0) {} 00019 00020 } // end namespace llvm