LLVM 19.0.0git
SystemZGOFFObjectWriter.cpp
Go to the documentation of this file.
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
11#include <memory>
12
13using namespace llvm;
14
15namespace {
16class SystemZGOFFObjectWriter : public MCGOFFObjectTargetWriter {
17public:
18 SystemZGOFFObjectWriter();
19};
20} // end anonymous namespace
21
22SystemZGOFFObjectWriter::SystemZGOFFObjectWriter()
24
25std::unique_ptr<MCObjectTargetWriter> llvm::createSystemZGOFFObjectWriter() {
26 return std::make_unique<SystemZGOFFObjectWriter>();
27}
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::unique_ptr< MCObjectTargetWriter > createSystemZGOFFObjectWriter()