LLVM  4.0.0
ARMAsmBackendWinCOFF.h
Go to the documentation of this file.
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:
19  ARMAsmBackendWinCOFF(const Target &T, const Triple &TheTriple)
20  : ARMAsmBackend(T, TheTriple, true) {}
21  MCObjectWriter *createObjectWriter(raw_pwrite_stream &OS) const override {
22  return createARMWinCOFFObjectWriter(OS, /*Is64Bit=*/false);
23  }
24 };
25 }
26 
27 #endif
MCObjectWriter * createARMWinCOFFObjectWriter(raw_pwrite_stream &OS, bool Is64Bit)
Construct an ARM PE/COFF object writer.
Defines the object file and target independent interfaces used by the assembler backend to write nati...
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
Target - Wrapper for Target specific information.
Basic Alias true
An abstract base class for streams implementations that also support a pwrite operation.
Definition: raw_ostream.h:333