27 lines · c
1//===-- AArch64ELFStreamer.h - ELF Streamer for AArch64 ---------*- C++ -*-===//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-exception6//7//===----------------------------------------------------------------------===//8//9// This file implements ELF streamer information for the AArch64 backend.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64ELFSTREAMER_H14#define LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64ELFSTREAMER_H15 16#include "llvm/MC/MCELFStreamer.h"17 18namespace llvm {19 20MCStreamer *createAArch64ELFStreamer(const Triple &, MCContext &Context,21 std::unique_ptr<MCAsmBackend> &&TAB,22 std::unique_ptr<MCObjectWriter> &&OW,23 std::unique_ptr<MCCodeEmitter> &&Emitter);24}25 26#endif27