AArch64WinCOFFStreamer.h 1.0 KB

123456789101112131415161718192021222324252627
  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-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file implements WinCOFF streamer information for the AArch64 backend.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #ifndef LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64WINCOFFSTREAMER_H
  13. #define LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64WINCOFFSTREAMER_H
  14. #include "AArch64TargetStreamer.h"
  15. #include "llvm/MC/MCWinCOFFStreamer.h"
  16. namespace llvm {
  17. MCWinCOFFStreamer *createAArch64WinCOFFStreamer(
  18. MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
  19. std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter,
  20. bool RelaxAll, bool IncrementalLinkerCompatible);
  21. } // end llvm namespace
  22. #endif