blob: a57b8a7ac0ff39f0f03cc46cbdf603803e5f505a [file] [log] [blame]
Eugene Zelenkod3a6c892017-02-11 00:27:28 +00001//===- MCMachObjectTargetWriter.cpp - Mach-O Target Writer Subclass -------===//
Daniel Dunbar8888a962010-12-16 16:09:19 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Daniel Dunbar8888a962010-12-16 16:09:19 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/MC/MCMachObjectWriter.h"
10
11using namespace llvm;
12
Jim Grosbach7c76b4c2015-06-04 20:27:42 +000013MCMachObjectTargetWriter::MCMachObjectTargetWriter(bool Is64Bit_,
14 uint32_t CPUType_,
15 uint32_t CPUSubtype_)
16 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_) {}
Daniel Dunbar8888a962010-12-16 16:09:19 +000017
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000018MCMachObjectTargetWriter::~MCMachObjectTargetWriter() = default;