LLVM API Documentation

MCAsmInfoCOFF.h
Go to the documentation of this file.
00001 //===-- MCAsmInfoCOFF.h - COFF asm properties -------------------*- 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_MC_MCASMINFOCOFF_H
00011 #define LLVM_MC_MCASMINFOCOFF_H
00012 
00013 #include "llvm/MC/MCAsmInfo.h"
00014 
00015 namespace llvm {
00016   class MCAsmInfoCOFF : public MCAsmInfo {
00017     virtual void anchor();
00018   protected:
00019     explicit MCAsmInfoCOFF();
00020   };
00021 
00022   class MCAsmInfoMicrosoft : public MCAsmInfoCOFF {
00023     void anchor() override;
00024   protected:
00025     explicit MCAsmInfoMicrosoft();
00026   };
00027 
00028   class MCAsmInfoGNUCOFF : public MCAsmInfoCOFF {
00029     void anchor() override;
00030   protected:
00031     explicit MCAsmInfoGNUCOFF();
00032   };
00033 }
00034 
00035 
00036 #endif // LLVM_MC_MCASMINFOCOFF_H