LLVM  3.7.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 using namespace llvm;
14 
15 namespace {
16 class ARMAsmBackendWinCOFF : public ARMAsmBackend {
17 public:
18  ARMAsmBackendWinCOFF(const Target &T, const Triple &TheTriple)
19  : ARMAsmBackend(T, TheTriple, true) {}
20  MCObjectWriter *createObjectWriter(raw_pwrite_stream &OS) const override {
21  return createARMWinCOFFObjectWriter(OS, /*Is64Bit=*/false);
22  }
23 };
24 }
25 
26 #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...
#define true
Definition: ConvertUTF.c:66
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
Target - Wrapper for Target specific information.
An abstract base class for streams implementations that also support a pwrite operation.
Definition: raw_ostream.h:321