LLVM API Documentation
00001 //===-- ARMAsmBackendWinCOFF.h - ARM Asm Backend WinCOFF --------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef LLVM_LIB_TARGET_ARM_ARMASMBACKENDWINCOFF_H 00011 #define LLVM_LIB_TARGET_ARM_ARMASMBACKENDWINCOFF_H 00012 00013 using namespace llvm; 00014 00015 namespace { 00016 class ARMAsmBackendWinCOFF : public ARMAsmBackend { 00017 public: 00018 ARMAsmBackendWinCOFF(const Target &T, StringRef Triple) 00019 : ARMAsmBackend(T, Triple, true) {} 00020 MCObjectWriter *createObjectWriter(raw_ostream &OS) const override { 00021 return createARMWinCOFFObjectWriter(OS, /*Is64Bit=*/false); 00022 } 00023 }; 00024 } 00025 00026 #endif