1//===- SystemZGOFFObjectWriter.cpp - SystemZ GOFF writer ------------------===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8
9#include "MCTargetDesc/SystemZMCTargetDesc.h"
10#include "llvm/MC/MCGOFFObjectWriter.h"
11#include <memory>
12
13using namespace llvm;
14
15namespace {
16class SystemZGOFFObjectWriter : public MCGOFFObjectTargetWriter {
17public:
18 SystemZGOFFObjectWriter();
19};
20} // end anonymous namespace
21
22SystemZGOFFObjectWriter::SystemZGOFFObjectWriter()
23 : MCGOFFObjectTargetWriter() {}
24
25std::unique_ptr<MCObjectTargetWriter> llvm::createSystemZGOFFObjectWriter() {
26 return std::make_unique<SystemZGOFFObjectWriter>();
27}
28

source code of llvm/lib/Target/SystemZ/MCTargetDesc/SystemZGOFFObjectWriter.cpp