mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Stub out explicit MCELFObjectTargetWriter interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122067 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -14,11 +14,21 @@
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
|
||||
namespace llvm {
|
||||
class MCELFObjectTargetWriter {
|
||||
protected:
|
||||
MCELFObjectTargetWriter();
|
||||
|
||||
public:
|
||||
virtual ~MCELFObjectTargetWriter();
|
||||
};
|
||||
|
||||
/// \brief Construct a new ELF writer instance.
|
||||
///
|
||||
/// \param MOTW - The target specific ELF writer subclass.
|
||||
/// \param OS - The stream to write to.
|
||||
/// \returns The constructed object writer.
|
||||
MCObjectWriter *createELFObjectWriter(raw_ostream &OS, bool is64Bit,
|
||||
MCObjectWriter *createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
|
||||
raw_ostream &OS, bool is64Bit,
|
||||
Triple::OSType OSType, uint16_t EMachine,
|
||||
bool IsLittleEndian,
|
||||
bool HasRelocationAddend);
|
||||
|
Reference in New Issue
Block a user