xref: /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h (revision 700637cbb5e582861067a11aaca4d053546871d2)
1 //===-- ARMAsmBackendWinCOFF.h - ARM Asm Backend WinCOFF --------*- 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 #ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMASMBACKENDWINCOFF_H
10 #define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMASMBACKENDWINCOFF_H
11 
12 #include "ARMAsmBackend.h"
13 #include "llvm/MC/MCObjectWriter.h"
14 
15 namespace llvm {
16 class ARMAsmBackendWinCOFF : public ARMAsmBackend {
17 public:
ARMAsmBackendWinCOFF(const Target & T)18   ARMAsmBackendWinCOFF(const Target &T)
19       : ARMAsmBackend(T, llvm::endianness::little) {}
20   std::unique_ptr<MCObjectTargetWriter>
createObjectTargetWriter()21   createObjectTargetWriter() const override {
22     return createARMWinCOFFObjectWriter();
23   }
24 };
25 } // namespace llvm
26 
27 #endif // LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMASMBACKENDWINCOFF_H
28