mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
MC/Mach-O: Move createMachObjectWriter into MCMachObjectWriter.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121971 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7e06af85d1
commit
aa4b7dd13b
23
include/llvm/MC/MCMachObjectWriter.h
Normal file
23
include/llvm/MC/MCMachObjectWriter.h
Normal file
@ -0,0 +1,23 @@
|
||||
//===-- llvm/MC/MCMachObjectWriter.h - Mach Object Writer -------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_MC_MCMACHOBJECTWRITER_H
|
||||
#define LLVM_MC_MCMACHOBJECTWRITER_H
|
||||
|
||||
#include "llvm/MC/MCObjectWriter.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
MCObjectWriter *createMachObjectWriter(raw_ostream &OS, bool is64Bit,
|
||||
uint32_t CPUType, uint32_t CPUSubtype,
|
||||
bool IsLittleEndian);
|
||||
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
@ -179,9 +179,6 @@ public:
|
||||
static void EncodeULEB128(uint64_t Value, raw_ostream &OS);
|
||||
};
|
||||
|
||||
MCObjectWriter *createMachObjectWriter(raw_ostream &OS, bool is64Bit,
|
||||
uint32_t CPUType, uint32_t CPUSubtype,
|
||||
bool IsLittleEndian);
|
||||
MCObjectWriter *createELFObjectWriter(raw_ostream &OS, bool is64Bit,
|
||||
Triple::OSType OSType, uint16_t EMachine,
|
||||
bool IsLittleEndian,
|
||||
|
@ -12,6 +12,7 @@
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
#include "llvm/MC/MCAsmLayout.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
#include "llvm/MC/MCMachObjectWriter.h"
|
||||
#include "llvm/MC/MCObjectWriter.h"
|
||||
#include "llvm/MC/MCSectionMachO.h"
|
||||
#include "llvm/MC/MCSymbol.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
#include "llvm/MC/MCDirectives.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
#include "llvm/MC/MCMachObjectWriter.h"
|
||||
#include "llvm/MC/MCObjectFormat.h"
|
||||
#include "llvm/MC/MCObjectWriter.h"
|
||||
#include "llvm/MC/MCSectionELF.h"
|
||||
|
@ -10,6 +10,7 @@
|
||||
#include "llvm/Target/TargetAsmBackend.h"
|
||||
#include "PPC.h"
|
||||
#include "PPCFixupKinds.h"
|
||||
#include "llvm/MC/MCMachObjectWriter.h"
|
||||
#include "llvm/MC/MCSectionMachO.h"
|
||||
#include "llvm/MC/MCObjectFormat.h"
|
||||
#include "llvm/MC/MCObjectWriter.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
#include "llvm/MC/MCFixupKindInfo.h"
|
||||
#include "llvm/MC/MCMachObjectWriter.h"
|
||||
#include "llvm/MC/MCObjectFormat.h"
|
||||
#include "llvm/MC/MCObjectWriter.h"
|
||||
#include "llvm/MC/MCSectionCOFF.h"
|
||||
|
Loading…
Reference in New Issue
Block a user