brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · 68b15ae Raw
29 lines · c
1//===-- AArch64WinCOFFStreamer.h - WinCOFF 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 WinCOFF streamer information for the AArch64 backend.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64WINCOFFSTREAMER_H14#define LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64WINCOFFSTREAMER_H15 16#include "AArch64TargetStreamer.h"17#include "llvm/MC/MCWinCOFFStreamer.h"18 19namespace llvm {20 21MCStreamer *22createAArch64WinCOFFStreamer(MCContext &Context,23                             std::unique_ptr<MCAsmBackend> &&TAB,24                             std::unique_ptr<MCObjectWriter> &&OW,25                             std::unique_ptr<MCCodeEmitter> &&Emitter);26} // end llvm namespace27 28#endif29