LLVM API Documentation
00001 //===-- MCMachObjectTargetWriter.cpp - Mach-O Target Writer Subclass ------===// 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/MCMachObjectWriter.h" 00011 00012 using namespace llvm; 00013 00014 MCMachObjectTargetWriter::MCMachObjectTargetWriter( 00015 bool Is64Bit_, uint32_t CPUType_, uint32_t CPUSubtype_, 00016 bool UseAggressiveSymbolFolding_) 00017 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_), 00018 UseAggressiveSymbolFolding(UseAggressiveSymbolFolding_) { 00019 } 00020 00021 MCMachObjectTargetWriter::~MCMachObjectTargetWriter() { 00022 }