1 //===-- ARMAsmBackendWinCOFF.h - ARM Asm Backend WinCOFF --------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLVM_LIB_TARGET_ARM_ARMASMBACKENDWINCOFF_H 11 #define LLVM_LIB_TARGET_ARM_ARMASMBACKENDWINCOFF_H 12 13 #include "ARMAsmBackend.h" 14 using namespace llvm; 15 16 namespace { 17 class ARMAsmBackendWinCOFF : public ARMAsmBackend { 18 public: ARMAsmBackendWinCOFF(const Target & T,const Triple & TheTriple)19 ARMAsmBackendWinCOFF(const Target &T, const Triple &TheTriple) 20 : ARMAsmBackend(T, TheTriple, true) {} createObjectWriter(raw_pwrite_stream & OS)21 MCObjectWriter *createObjectWriter(raw_pwrite_stream &OS) const override { 22 return createARMWinCOFFObjectWriter(OS, /*Is64Bit=*/false); 23 } 24 }; 25 } 26 27 #endif 28